Some more doxygen command killed.
1.1 --- a/lemon/maps.h Mon Jul 04 16:27:54 2005 +0000
1.2 +++ b/lemon/maps.h Mon Jul 04 17:16:05 2005 +0000
1.3 @@ -751,8 +751,8 @@
1.4 ///that is it provides an <tt>operator()</tt> to read its values.
1.5 ///
1.6 ///For the sake of convenience it also works as
1.7 - ///a ususal \ref concept::ReadMap "readable map", i.e
1.8 - ///<tt>operator[]</tt> and the \c Key and \c Value typedefs also exist.
1.9 + ///a ususal \ref concept::ReadMap "readable map",
1.10 + ///i.e. <tt>operator[]</tt> and the \c Key and \c Value typedefs also exist.
1.11
1.12 template<class M>
1.13 class MapFunctor
1.14 @@ -771,17 +771,10 @@
1.15 typedef typename M::Value Value;
1.16
1.17 ///Constructor
1.18 -
1.19 - ///\e
1.20 - ///
1.21 MapFunctor(const M &_m) : m(_m) {};
1.22 ///Returns a value of the map
1.23 -
1.24 - ///\e
1.25 - ///
1.26 Value operator()(Key k) const {return m[k];}
1.27 ///\e
1.28 - ///
1.29 Value operator[](Key k) const {return m[k];}
1.30 };
1.31
1.32 @@ -821,9 +814,6 @@
1.33 typedef typename M1::Value Value;
1.34
1.35 ///Constructor
1.36 -
1.37 - ///\e
1.38 - ///
1.39 ForkMap(const M1 &_m1,const M2 &_m2) : m1(_m1), m2(_m2) {};
1.40 Value operator[](Key k) const {return m1[k];}
1.41 void set(Key k,const Value &v) {m1.set(k,v); m2.set(k,v);}
1.42 @@ -867,9 +857,6 @@
1.43 typedef bool Value;
1.44
1.45 ///Constructor
1.46 -
1.47 - ///\e
1.48 - ///
1.49 NotMap(const M &_m) : m(_m) {};
1.50 Value operator[](Key k) const {return !m[k];}
1.51 };
2.1 --- a/lemon/smart_graph.h Mon Jul 04 16:27:54 2005 +0000
2.2 +++ b/lemon/smart_graph.h Mon Jul 04 17:16:05 2005 +0000
2.3 @@ -367,7 +367,6 @@
2.4
2.5 ///Undo the changes until a snapshot created by save().
2.6 ///
2.7 - ///\param s an internal stucture given back by save()
2.8 ///\note After you restored a state, you cannot restore
2.9 ///a later state, in other word you cannot add again the edges deleted
2.10 ///by restore().