# HG changeset patch
# User alpar
# Date 1120497365 0
# Node ID 0d9f1a71be27b9755ea2d976ee85a9a4545aee71
# Parent 308150155bb587b132da6640dbd72a9617845dde
Some more doxygen command killed.
diff -r 308150155bb5 -r 0d9f1a71be27 lemon/maps.h
--- a/lemon/maps.h Mon Jul 04 16:27:54 2005 +0000
+++ b/lemon/maps.h Mon Jul 04 17:16:05 2005 +0000
@@ -751,8 +751,8 @@
///that is it provides an operator() to read its values.
///
///For the sake of convenience it also works as
- ///a ususal \ref concept::ReadMap "readable map", i.e
- ///operator[] and the \c Key and \c Value typedefs also exist.
+ ///a ususal \ref concept::ReadMap "readable map",
+ ///i.e. operator[] and the \c Key and \c Value typedefs also exist.
template
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];}
};
diff -r 308150155bb5 -r 0d9f1a71be27 lemon/smart_graph.h
--- a/lemon/smart_graph.h Mon Jul 04 16:27:54 2005 +0000
+++ b/lemon/smart_graph.h Mon Jul 04 17:16:05 2005 +0000
@@ -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().