Changeset 921:818510fa3d99 in lemon-0.x for src/work/peter/path
- Timestamp:
- 09/29/04 17:30:04 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1232
- Location:
- src/work/peter/path
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/peter/path/debug.h
r815 r921 1 1 // -*- C++ -*- // 2 2 3 #ifndef HUGO_DEBUG_H4 #define HUGO_DEBUG_H3 #ifndef LEMON_DEBUG_H 4 #define LEMON_DEBUG_H 5 5 6 6 //! \file 7 7 //! \brief Basic definitions for debug control. 8 8 9 namespace hugo{9 namespace lemon { 10 10 11 11 //! Debug mode for testing/debugging … … 54 54 55 55 } 56 #endif // HUGO_DEBUG_H56 #endif // LEMON_DEBUG_H -
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 -
src/work/peter/path/path_skeleton.h
r815 r921 6 6 ///\brief Classes for representing paths in graphs. 7 7 8 #ifndef HUGO_PATH_H9 #define HUGO_PATH_H10 11 #include < hugo/invalid.h>12 13 namespace hugo{8 #ifndef LEMON_PATH_H 9 #define LEMON_PATH_H 10 11 #include <lemon/invalid.h> 12 13 namespace lemon { 14 14 namespace skeleton { 15 15 /// \addtogroup skeletons … … 219 219 } 220 220 221 } // namespace hugo222 223 #endif // HUGO_PATH_H221 } // namespace lemon 222 223 #endif // LEMON_PATH_H -
src/work/peter/path/path_test.cc
r815 r921 6 6 7 7 using namespace std; 8 using namespace hugo;8 using namespace lemon; 9 9 using namespace skeleton; 10 10
Note: See TracChangeset
for help on using the changeset viewer.