[Lemon-commits] [lemon_svn] alpar: r2029 - hugo/trunk/lemon

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 20:49:38 CET 2006


Author: alpar
Date: Mon Jul  4 19:16:05 2005
New Revision: 2029

Modified:
   hugo/trunk/lemon/maps.h
   hugo/trunk/lemon/smart_graph.h

Log:
Some more doxygen command killed.

Modified: hugo/trunk/lemon/maps.h
==============================================================================
--- hugo/trunk/lemon/maps.h	(original)
+++ hugo/trunk/lemon/maps.h	Mon Jul  4 19:16:05 2005
@@ -751,8 +751,8 @@
   ///that is it provides an <tt>operator()</tt> to read its values.
   ///
   ///For the sake of convenience it also works as
-  ///a ususal \ref concept::ReadMap "readable map", i.e
-  ///<tt>operator[]</tt> and the \c Key and \c Value typedefs also exist.
+  ///a ususal \ref concept::ReadMap "readable map",
+  ///i.e. <tt>operator[]</tt> and the \c Key and \c Value typedefs also exist.
 
   template<class M> 
   class MapFunctor
@@ -771,17 +771,10 @@
     typedef typename M::Value Value;
 
     ///Constructor
-
-    ///\e
-    ///
     MapFunctor(const M &_m) : m(_m) {};
     ///Returns a value of the map
-    
-    ///\e
-    ///
     Value operator()(Key k) const {return m[k];}
     ///\e
-    ///
     Value operator[](Key k) const {return m[k];}
   };
   
@@ -821,9 +814,6 @@
     typedef typename M1::Value Value;
 
     ///Constructor
-
-    ///\e
-    ///
     ForkMap(const M1 &_m1,const M2 &_m2) : m1(_m1), m2(_m2) {};
     Value operator[](Key k) const {return m1[k];}
     void set(Key k,const Value &v) {m1.set(k,v); m2.set(k,v);}
@@ -867,9 +857,6 @@
     typedef bool Value;
 
     ///Constructor
-
-    ///\e
-    ///
     NotMap(const M &_m) : m(_m) {};
     Value operator[](Key k) const {return !m[k];}
   };

Modified: hugo/trunk/lemon/smart_graph.h
==============================================================================
--- hugo/trunk/lemon/smart_graph.h	(original)
+++ hugo/trunk/lemon/smart_graph.h	Mon Jul  4 19:16:05 2005
@@ -367,7 +367,6 @@
       
       ///Undo the changes until a snapshot created by save().
       ///
-      ///\param s an internal stucture given back by save()
       ///\note After you restored a state, you cannot restore
       ///a later state, in other word you cannot add again the edges deleted
       ///by restore().



More information about the Lemon-commits mailing list