Changeset 1415:2a5810c2f806 in lemon-0.x for src
- Timestamp:
- 05/14/05 19:22:27 (19 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1885
- Location:
- src/lemon/bits
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/lemon/bits/item_reader.h
r1408 r1415 15 15 */ 16 16 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 18 26 /// \file 19 27 /// \brief Item reader bits for lemon input. … … 35 43 class DefaultReader; 36 44 37 /// \ingroup i o_group45 /// \ingroup item_io 38 46 /// 39 47 /// \brief Reader class for quoted strings. … … 150 158 }; 151 159 152 /// \ingroup i o_group160 /// \ingroup item_io 153 161 /// \brief Reader for standard containers. 154 162 /// … … 192 200 }; 193 201 194 /// \ingroup i o_group202 /// \ingroup item_io 195 203 /// 196 204 /// \brief Reader for standard containers. … … 235 243 }; 236 244 237 /// \ingroup i o_group245 /// \ingroup item_io 238 246 /// \brief Reader for parsed string. 239 247 /// … … 282 290 }; 283 291 284 /// \ingroup i o_group292 /// \ingroup item_io 285 293 /// \brief Reader for read the whole line. 286 294 /// … … 312 320 }; 313 321 314 /// \ingroup i o_group322 /// \ingroup item_io 315 323 /// 316 324 /// \brief The default item reader template class. … … 354 362 : public InsertReader<std::multiset<Item> > {}; 355 363 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 357 371 class DefaultSkipper { 358 372 public: … … 376 390 } 377 391 }; 378 392 393 /// \ingroup item_io 379 394 /// \brief Standard ReaderTraits for the GraphReader class. 380 395 /// -
src/lemon/bits/item_writer.h
r1409 r1415 15 15 */ 16 16 17 /// \ingroup i o_group17 /// \ingroup item_io 18 18 /// \file 19 19 /// \brief Item writer bits for lemon output. … … 35 35 class DefaultWriter; 36 36 37 /// \ingroup i o_group37 /// \ingroup item_io 38 38 /// \brief Writer class for quoted strings. 39 39 /// … … 118 118 }; 119 119 120 /// \ingroup i o_group120 /// \ingroup item_io 121 121 /// 122 122 /// \brief Writer for standard containers. … … 157 157 }; 158 158 159 /// \ingroup i o_group159 /// \ingroup item_io 160 160 /// 161 161 /// \brief The default item writer template class. … … 198 198 : public IterableWriter<std::multiset<Item> > {}; 199 199 200 /// \ingroup item_io 200 201 /// \brief Standard WriterTraits for the section writers. 201 202 ///
Note: See TracChangeset
for help on using the changeset viewer.