# HG changeset patch # User alpar # Date 1094460906 0 # Node ID 93246c00cd2469aca01e8d47ffd63f29e407d902 # Parent 59b8cb2cb2f8f8922c6781624383779345ad86b8 Minor changes in doc. diff -r 59b8cb2cb2f8 -r 93246c00cd24 src/hugo/skeletons/path.h --- a/src/hugo/skeletons/path.h Mon Sep 06 08:22:48 2004 +0000 +++ b/src/hugo/skeletons/path.h Mon Sep 06 08:55:06 2004 +0000 @@ -1,19 +1,5 @@ // -*- c++ -*- // -/** -@defgroup paths Path Structures -@ingroup datas -\brief Path structures implemented in Hugo. - -Hugolib provides flexible data structures -to work with paths. - -All of them have the same interface, especially they can be built or extended -using a standard Builder subclass. This make is easy to have e.g. the Dijkstra -algorithm to store its result in any kind of path structure. - -*/ - ///\ingroup paths ///\file ///\brief Classes for representing paths in graphs. @@ -21,13 +7,7 @@ #ifndef HUGO_PATH_H #define HUGO_PATH_H -#include -#include -#include - #include -#include -#include namespace hugo { namespace skeleton { @@ -35,9 +15,9 @@ /// @{ - //! \brief A structure for representing directed path in a graph. + //! \brief A skeletom structure for representing directed paths in a graph. //! - //! A structure for representing directed path in a graph. + //! A skeleton structure for representing directed paths in a graph. //! \param GR The graph type in which the path is. //! //! In a sense, the path can be treated as a graph, for is has \c NodeIt diff -r 59b8cb2cb2f8 -r 93246c00cd24 src/work/klao/path.h --- a/src/work/klao/path.h Mon Sep 06 08:22:48 2004 +0000 +++ b/src/work/klao/path.h Mon Sep 06 08:55:06 2004 +0000 @@ -12,6 +12,8 @@ using a standard Builder subclass. This make is easy to have e.g. the Dijkstra algorithm to store its result in any kind of path structure. +\sa hugo::skeleton::Path + */ ///\ingroup paths @@ -35,7 +37,7 @@ /// @{ - //! \brief A structure for representing directed path in a graph. + //! \brief A structure for representing directed paths in a graph. //! //! A structure for representing directed path in a graph. //! \param Graph The graph type in which the path is.