docu: new doxygen, new grouping

master
Marc Wäckerlin 19 years ago
parent be8cbd2d53
commit 91119df081
  1. 7
      mrw/deque.hpp
  2. 7
      mrw/functiontrace.hpp
  3. 8
      mrw/list.hpp
  4. 7
      mrw/map.hpp
  5. 9
      mrw/multimap.hpp
  6. 7
      mrw/multiset.hpp
  7. 7
      mrw/set.hpp
  8. 7
      mrw/stacktrace.hpp
  9. 12
      mrw/string.hpp
  10. 7
      mrw/vector.hpp

@ -9,6 +9,9 @@
@license LGPL, see file <a href="license.html">COPYING</a>
$Log$
Revision 1.3 2005/04/07 20:48:20 marc
docu: new doxygen, new grouping
Revision 1.2 2004/12/20 07:40:35 marc
documentation improved, new grouping
@ -24,9 +27,6 @@
#include <mrw/exception.hpp>
#include <mrw/string.hpp>
/** @addtogroup StdExt
*/
//@{
/** @addtogroup StdExtSTL
*/
//@{
@ -81,7 +81,6 @@ std::deque<T, A>& operator>>(std::deque<T, A>& l, T& o) throw(std::exception) {
return l;
}
//@}
//@}
//@}

@ -9,6 +9,9 @@
@license LGPL, see file <a href="license.html">COPYING</a>
$Log$
Revision 1.2 2005/04/07 20:50:13 marc
docu: new doxygen, new grouping
Revision 1.1 2005/03/11 21:07:54 marc
initial version
@ -27,6 +30,9 @@
namespace mrw {
/** @addtogroup debug */
//@{
/** @defgroup FunctionTrace Function Tracing (using log4cxx)
@pre #include <mrw/functiontrace.hpp>
@ -270,5 +276,6 @@ namespace mrw {
static unsigned int _level;
};
//@}
//@}
}
#endif

@ -9,6 +9,9 @@
@license LGPL, see file <a href="license.html">COPYING</a>
$Log$
Revision 1.3 2005/04/07 20:48:20 marc
docu: new doxygen, new grouping
Revision 1.2 2004/12/20 07:40:35 marc
documentation improved, new grouping
@ -40,7 +43,12 @@
}
@endcode
*/
//@}
/** @addtogroup StdExtSTL
*/
//@{
/** @defgroup StdExtliststl list
*/
//@{

@ -9,6 +9,9 @@
@license LGPL, see file <a href="license.html">COPYING</a>
$Log$
Revision 1.3 2005/04/07 20:48:20 marc
docu: new doxygen, new grouping
Revision 1.2 2004/12/20 07:40:35 marc
documentation improved, new grouping
@ -24,9 +27,6 @@
#include <mrw/exception.hpp>
#include <mrw/string.hpp>
/** @addtogroup StdExt
*/
//@{
/** @addtogroup StdExtSTL
*/
//@{
@ -90,7 +90,6 @@ std::map<K, T, C, A>& operator>>(std::map<K, T, C, A>& l, std::pair<K, T>& o)
return l;
}
//@}
//@}
//@}

@ -9,6 +9,9 @@
@license LGPL, see file <a href="license.html">COPYING</a>
$Log$
Revision 1.3 2005/04/07 20:48:20 marc
docu: new doxygen, new grouping
Revision 1.2 2004/12/20 07:40:36 marc
documentation improved, new grouping
@ -24,13 +27,10 @@
#include <mrw/exception.hpp>
#include <mrw/string.hpp>
/** @addtogroup StdExt
*/
//@{
/** @addtogroup StdExtSTL
*/
//@{
/** @addtogroup StdExtmultimap multimap
/** @defgroup StdExtmultimap multimap
*/
//@{
@ -86,7 +86,6 @@ std::multimap<K, T, C, A>& operator>>(std::multimap<K, T, C, A>& l, std::pair<K,
return l;
}
//@}
//@}
//@}

@ -9,6 +9,9 @@
@license LGPL, see file <a href="license.html">COPYING</a>
$Log$
Revision 1.3 2005/04/07 20:48:20 marc
docu: new doxygen, new grouping
Revision 1.2 2004/12/20 07:40:36 marc
documentation improved, new grouping
@ -24,9 +27,6 @@
#include <mrw/exception.hpp>
#include <mrw/string.hpp>
/** @addtogroup StdExt
*/
//@{
/** @addtogroup StdExtSTL
*/
//@{
@ -81,7 +81,6 @@ std::multiset<T, C, A>& operator>>(std::multiset<T, C, A>& l, T& o) throw(std::e
return l;
}
//@}
//@}
//@}

@ -9,6 +9,9 @@
@license LGPL, see file <a href="license.html">COPYING</a>
$Log$
Revision 1.3 2005/04/07 20:48:20 marc
docu: new doxygen, new grouping
Revision 1.2 2004/12/20 07:40:36 marc
documentation improved, new grouping
@ -24,9 +27,6 @@
#include <mrw/exception.hpp>
#include <mrw/string.hpp>
/** @addtogroup StdExt
*/
//@{
/** @addtogroup StdExtSTL
*/
//@{
@ -88,7 +88,6 @@ std::set<T, C, A>& operator>>(std::set<T, C, A>& l, T& o)
return l;
}
//@}
//@}
//@}

@ -9,6 +9,9 @@
@license LGPL, see file <a href="license.html">COPYING</a>
$Log$
Revision 1.15 2005/04/07 20:51:30 marc
docu: new doxygen, new grouping
Revision 1.14 2005/03/11 23:22:58 marc
It's multithreaded now, thanks to a boost mutex
@ -71,6 +74,9 @@
namespace mrw {
/** @defgroup debug Debug Utilities */
//@{
/** @defgroup grpStackTrace Collect and Format a Stack Trace
Somewhere in a program, there is a fatal error, e.g. an
@ -298,6 +304,7 @@ namespace mrw {
};
//@}
//@}
}
/** @addtogroup grpStackTrace */

@ -9,6 +9,9 @@
@license LGPL, see file <a href="license.html">COPYING</a>
$Log$
Revision 1.6 2005/04/07 20:48:42 marc
docu: new doxygen, new grouping
Revision 1.5 2005/01/28 07:53:09 marc
doc: hint regarding iomanip on string
@ -165,6 +168,10 @@ namespace mrw {
They may now throw exceptions if conversion fails!
(since 1.4.1)
*/
//@}
/** @addtogroup stdextstring
*/
//@{
@ -209,13 +216,9 @@ namespace mrw {
}
//@}
//@}
}
/** @addtogroup StdExt
*/
//@{
/** @addtogroup stdextstring
*/
//@{
@ -556,7 +559,6 @@ inline std::string& operator+=(std::string& s, signed long o)
return s+=mrw::string(o);
}
//@}
//@}
#endif

@ -9,6 +9,9 @@
@license LGPL, see file <a href="license.html">COPYING</a>
$Log$
Revision 1.3 2005/04/07 20:48:20 marc
docu: new doxygen, new grouping
Revision 1.2 2004/12/20 07:40:36 marc
documentation improved, new grouping
@ -24,9 +27,6 @@
#include <mrw/exception.hpp>
#include <mrw/string.hpp>
/** @addtogroup StdExt
*/
//@{
/** @addtogroup StdExtSTL
*/
//@{
@ -81,7 +81,6 @@ std::vector<T, A>& operator>>(std::vector<T, A>& l, T& o) throw(std::exception)
return l;
}
//@}
//@}
//@}

Loading…
Cancel
Save