Changeset 921:818510fa3d99 in lemon-0.x for src/work/peter/path/path.h
- Timestamp:
- 09/29/04 17:30:04 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1232
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/peter/path/path.h
r815 r921 4 4 @defgroup paths Path Structures 5 5 @ingroup datas 6 \brief Path structures implemented in Hugo.7 8 Hugolibprovides flexible data structures6 \brief Path structures implemented in LEMON. 7 8 LEMON provides flexible data structures 9 9 to work with paths. 10 10 … … 13 13 algorithm to store its result in any kind of path structure. 14 14 15 \sa hugo::skeleton::Path15 \sa lemon::skeleton::Path 16 16 17 17 */ … … 21 21 ///\brief Classes for representing paths in graphs. 22 22 23 #ifndef HUGO_PATH_H24 #define HUGO_PATH_H23 #ifndef LEMON_PATH_H 24 #define LEMON_PATH_H 25 25 26 26 #include <deque> … … 28 28 #include <algorithm> 29 29 30 #include < hugo/invalid.h>31 #include < hugo/error.h>30 #include <lemon/invalid.h> 31 #include <lemon/error.h> 32 32 #include <debug.h> 33 33 34 namespace hugo{34 namespace lemon { 35 35 36 36 /// \addtogroup paths … … 1170 1170 ///@} 1171 1171 1172 } // namespace hugo1173 1174 #endif // HUGO_PATH_H1172 } // namespace lemon 1173 1174 #endif // LEMON_PATH_H
Note: See TracChangeset
for help on using the changeset viewer.