Changeset 794:d9ec436d11fe in lemon-0.x
- Timestamp:
- 09/03/04 12:28:21 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1088
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/groups.dox
r785 r794 68 68 69 69 /** 70 @defgroup skeletons Skeletons 71 \brief Skeletons (a.k.a. concept checking classes) 72 73 This group describes the data/algorithm skeletons implemented in HugoLib in 74 order to make it easier to check if a certain template class or 75 template function is correctly implemented. 76 */ 77 78 79 /** 70 80 @defgroup experimental Experimental Structures and Algorithms 71 81 This group contains some Experimental structures and algorithms. -
src/hugo/skeletons/graph.h
r774 r794 3 3 #define HUGO_SKELETON_GRAPH_H 4 4 5 ///\ingroup skeletons 5 6 ///\file 6 7 ///\brief Declaration of GraphSkeleton. … … 13 14 namespace skeleton { 14 15 15 // @defgroup empty_graph The GraphSkeleton class16 // @{16 /// \addtogroup skeletons 17 /// @{ 17 18 18 19 /// An empty static graph class. -
src/hugo/skeletons/maps.h
r732 r794 3 3 #define HUGO_MAPSKELETON_H 4 4 5 ///\ingroup skeletons 5 6 ///\file 6 7 ///\brief Map concepts checking classes for testing and documenting. … … 11 12 namespace skeleton { 12 13 14 /// \addtogroup skeletons 15 /// @{ 16 13 17 /// Readable map concept 14 18 template<typename K, typename T> … … 95 99 ReferenceMap() {} 96 100 }; 101 102 // @} 103 97 104 } //namespace skeleton 98 105 } //namespace hugo
Note: See TracChangeset
for help on using the changeset viewer.