diff -r 738abd9d1262 -r 056fbb112b30 src/work/peter/hierarchygraph.h --- a/src/work/peter/hierarchygraph.h Thu Sep 09 07:09:41 2004 +0000 +++ b/src/work/peter/hierarchygraph.h Thu Sep 09 09:18:41 2004 +0000 @@ -527,9 +527,9 @@ }; }; - /// An empty eraseable graph class. + /// An empty erasable graph class. - /// This class provides all the common features of an \e eraseable graph + /// This class provides all the common features of an \e erasable graph /// structure, /// however completely without implementations and real data structures /// behind the interface. @@ -546,7 +546,7 @@ /// feature, the documentation of a real graph imlementation /// like @ref ListGraph or /// @ref SmartGraph will just refer to this structure. -template < typename Gact, typename Gsub > class EraseableHierarchyGraph:public HierarchyGraph < Gact, +template < typename Gact, typename Gsub > class ErasableHierarchyGraph:public HierarchyGraph < Gact, Gsub > { @@ -563,11 +563,11 @@ } /// Defalult constructor. - EraseableHierarchyGraph () + ErasableHierarchyGraph () { } ///Copy consructor. - EraseableHierarchyGraph (const HierarchyGraph < Gact, Gsub > &EPG) + ErasableHierarchyGraph (const HierarchyGraph < Gact, Gsub > &EPG) { } };