# HG changeset patch # User alpar # Date 1082970012 0 # Node ID e8377ac921b6dc35bce27b29a7e3382fae9d270d # Parent a2d8ec38e8dbea70b544669112b2c4f97b0c0bbe Docs are now divided into modules. diff -r a2d8ec38e8db -r e8377ac921b6 doc/Doxyfile --- a/doc/Doxyfile Mon Apr 26 08:07:53 2004 +0000 +++ b/doc/Doxyfile Mon Apr 26 09:00:12 2004 +0000 @@ -391,18 +391,20 @@ # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = ../src/include/skeletons/graph.h \ +INPUT = maps.dox groups.dox \ + ../src/include/skeletons/graph.h \ ../src/include/invalid.h \ ../src/include/smart_graph.h \ ../src/include/skeletons/maps.h \ ../src/include/dijkstra.h \ ../src/include/bin_heap.h \ ../src/include/fib_heap.h \ + ../src/work/alpar/list_graph.h \ ../src/work/athos/xy/xy.h \ ../src/work/athos/minlengthpaths.h \ ../src/work/marci/time_measure.h \ - ../src/work/marci/graph_wrapper.h \ - maps.dox + ../src/work/marci/graph_wrapper.h + # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp diff -r a2d8ec38e8db -r e8377ac921b6 doc/groups.dox --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/doc/groups.dox Mon Apr 26 09:00:12 2004 +0000 @@ -0,0 +1,15 @@ + +/// @defgroup experimental Experimental strucures and algorithms +/// This group contains some Experimental strucures and algorithms. +/// The stuffs here are subject to change. + +/// \ingroup experimental +namespace hugo { } + +/// @defgroup gwrappers Wrapper classes for graphs +/// @ingroup experimental +/// This group contains several wrapper classes for graphs + +/// @defgroup graphs Graph structures. +/// @ingroup experimental +/// This group describes the several graph structures implemented in HugoLib. \ No newline at end of file diff -r a2d8ec38e8db -r e8377ac921b6 src/work/alpar/list_graph.h --- a/src/work/alpar/list_graph.h Mon Apr 26 08:07:53 2004 +0000 +++ b/src/work/alpar/list_graph.h Mon Apr 26 09:00:12 2004 +0000 @@ -3,6 +3,7 @@ #ifndef HUGO_LIST_GRAPH_H #define HUGO_LIST_GRAPH_H +///ingroup graphs ///\file ///\brief ListGraph, SymListGraph, NodeSet and EdgeSet classes. @@ -13,6 +14,9 @@ namespace hugo { +/// \addtogroup graphs +/// @{ + class SymListGraph; ///A list graph class. @@ -1566,7 +1570,9 @@ }; }; - + +/// @} + } //namespace hugo #endif //HUGO_LIST_GRAPH_H diff -r a2d8ec38e8db -r e8377ac921b6 src/work/marci/graph_wrapper.h --- a/src/work/marci/graph_wrapper.h Mon Apr 26 08:07:53 2004 +0000 +++ b/src/work/marci/graph_wrapper.h Mon Apr 26 09:00:12 2004 +0000 @@ -7,6 +7,9 @@ namespace hugo { + /// \addtogroup gwrappers + /// @{ + /// Graph wrappers /// A main parts of HUGOlib are the different graph structures, @@ -1538,8 +1541,10 @@ }; }; + ///@} } //namespace hugo + #endif //HUGO_GRAPH_WRAPPER_H