src/hugo/skeletons/graph.h
changeset 826 056fbb112b30
parent 801 48638058e188
child 873 f3a30fda2e49
     1.1 --- a/src/hugo/skeletons/graph.h	Thu Sep 09 07:09:41 2004 +0000
     1.2 +++ b/src/hugo/skeletons/graph.h	Thu Sep 09 09:18:41 2004 +0000
     1.3 @@ -456,22 +456,22 @@
     1.4  
     1.5        /// This function deletes all edges and nodes of the graph.
     1.6        /// It also frees the memory allocated to store them.
     1.7 -      /// \todo It might belong to \c EraseableGraphSkeleton.
     1.8 +      /// \todo It might belong to \c ErasableGraphSkeleton.
     1.9        void clear() { }
    1.10      };
    1.11  
    1.12 -    /// An empty eraseable graph class.
    1.13 +    /// An empty erasable graph class.
    1.14    
    1.15      /// This class is an extension of \c GraphSkeleton. It also makes it
    1.16      /// possible to erase edges or nodes.
    1.17 -    class EraseableGraphSkeleton : public GraphSkeleton
    1.18 +    class ErasableGraphSkeleton : public GraphSkeleton
    1.19      {
    1.20      public:
    1.21        /// Defalult constructor.
    1.22  
    1.23        /// Defalult constructor.
    1.24        ///
    1.25 -      EraseableGraphSkeleton() { }
    1.26 +      ErasableGraphSkeleton() { }
    1.27        /// Deletes a node.
    1.28  
    1.29        /// Deletes node \c n node.