COIN-OR::LEMON - Graph Library

Changeset 1415:2a5810c2f806 in lemon-0.x


Ignore:
Timestamp:
05/14/05 19:22:27 (19 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1885
Message:

Moved to subgroup

Location:
src/lemon/bits
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/lemon/bits/item_reader.h

    r1408 r1415  
    1515 */
    1616
    17 /// \ingroup io_group
     17/// @defgroup item_io Item Readers and Writers
     18/// @ingroup io_group
     19/// \brief Item Readers and Writers
     20///
     21/// The Input-Output classes can handle more data type by example
     22/// as map or attribute value. Each of these should be written and
     23/// read some way. The module make possible to do this. 
     24
     25/// \ingroup item_io
    1826/// \file
    1927/// \brief Item reader bits for lemon input.
     
    3543  class DefaultReader;
    3644
    37   /// \ingroup io_group
     45  /// \ingroup item_io
    3846  ///
    3947  /// \brief Reader class for quoted strings.
     
    150158  };
    151159
    152   /// \ingroup io_group
     160  /// \ingroup item_io
    153161  /// \brief Reader for standard containers.
    154162  ///
     
    192200  };
    193201
    194   /// \ingroup io_group
     202  /// \ingroup item_io
    195203  ///
    196204  /// \brief Reader for standard containers.
     
    235243  };
    236244
    237   /// \ingroup io_group
     245  /// \ingroup item_io
    238246  /// \brief Reader for parsed string.
    239247  ///
     
    282290  };
    283291
    284   /// \ingroup io_group
     292  /// \ingroup item_io
    285293  /// \brief Reader for read the whole line.
    286294  ///
     
    312320  };
    313321
    314   /// \ingroup io_group
     322  /// \ingroup item_io
    315323  ///
    316324  /// \brief The default item reader template class.
     
    354362    : public InsertReader<std::multiset<Item> > {};
    355363
    356   /// \ingroup io_group
     364  /// \ingroup item_io
     365  ///
     366  /// \brief The default item reader for skipping a value in the stream.
     367  ///
     368  /// The default item reader for skipping a value in the stream.
     369  ///
     370  /// \author Balazs Dezso
    357371  class DefaultSkipper {
    358372  public:
     
    376390    }
    377391  };
    378  
     392
     393  /// \ingroup item_io 
    379394  /// \brief Standard ReaderTraits for the GraphReader class.
    380395  ///
  • src/lemon/bits/item_writer.h

    r1409 r1415  
    1515 */
    1616
    17 /// \ingroup io_group
     17/// \ingroup item_io
    1818/// \file
    1919/// \brief Item writer bits for lemon output.
     
    3535  class DefaultWriter;
    3636
    37   /// \ingroup io_group
     37  /// \ingroup item_io
    3838  /// \brief Writer class for quoted strings.
    3939  ///
     
    118118  };
    119119
    120   /// \ingroup io_group
     120  /// \ingroup item_io
    121121  ///
    122122  /// \brief Writer for standard containers.
     
    157157  };
    158158
    159   /// \ingroup io_group
     159  /// \ingroup item_io
    160160  ///
    161161  /// \brief The default item writer template class.
     
    198198    : public IterableWriter<std::multiset<Item> > {};
    199199
     200  /// \ingroup item_io
    200201  /// \brief Standard WriterTraits for the section writers.
    201202  ///
Note: See TracChangeset for help on using the changeset viewer.