COIN-OR::LEMON - Graph Library

Changeset 794:d9ec436d11fe in lemon-0.x


Ignore:
Timestamp:
09/03/04 12:28:21 (20 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1088
Message:

New doxygen module "skeletons" for the skeletons.

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • doc/groups.dox

    r785 r794  
    6868
    6969/**
     70@defgroup skeletons Skeletons
     71\brief Skeletons (a.k.a. concept checking classes)
     72
     73This group describes the data/algorithm skeletons implemented in HugoLib in
     74order to make it easier to check if a certain template class or
     75template function is correctly implemented.
     76*/
     77
     78
     79/**
    7080@defgroup experimental Experimental Structures and Algorithms
    7181This group contains some Experimental structures and algorithms.
  • src/hugo/skeletons/graph.h

    r774 r794  
    33#define HUGO_SKELETON_GRAPH_H
    44
     5///\ingroup skeletons
    56///\file
    67///\brief Declaration of GraphSkeleton.
     
    1314  namespace skeleton {
    1415   
    15     // @defgroup empty_graph The GraphSkeleton class
    16     // @{
     16    /// \addtogroup skeletons
     17    /// @{
    1718
    1819    /// An empty static graph class.
  • src/hugo/skeletons/maps.h

    r732 r794  
    33#define HUGO_MAPSKELETON_H
    44
     5///\ingroup skeletons
    56///\file
    67///\brief Map concepts checking classes for testing and documenting.
     
    1112  namespace skeleton {
    1213 
     14    /// \addtogroup skeletons
     15    /// @{
     16
    1317    /// Readable map concept
    1418    template<typename K, typename T>
     
    9599      ReferenceMap() {}
    96100    };
     101
     102    // @}
     103
    97104  } //namespace skeleton
    98105} //namespace hugo
Note: See TracChangeset for help on using the changeset viewer.