[Lemon-commits] [lemon_svn] deba: r1885 - hugo/trunk/src/lemon/bits
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:48:27 CET 2006
Author: deba
Date: Sat May 14 19:22:27 2005
New Revision: 1885
Modified:
hugo/trunk/src/lemon/bits/item_reader.h
hugo/trunk/src/lemon/bits/item_writer.h
Log:
Moved to subgroup
Modified: hugo/trunk/src/lemon/bits/item_reader.h
==============================================================================
--- hugo/trunk/src/lemon/bits/item_reader.h (original)
+++ hugo/trunk/src/lemon/bits/item_reader.h Sat May 14 19:22:27 2005
@@ -14,7 +14,15 @@
*
*/
-/// \ingroup io_group
+/// @defgroup item_io Item Readers and Writers
+/// @ingroup io_group
+/// \brief Item Readers and Writers
+///
+/// The Input-Output classes can handle more data type by example
+/// as map or attribute value. Each of these should be written and
+/// read some way. The module make possible to do this.
+
+/// \ingroup item_io
/// \file
/// \brief Item reader bits for lemon input.
@@ -34,7 +42,7 @@
template <typename Value>
class DefaultReader;
- /// \ingroup io_group
+ /// \ingroup item_io
///
/// \brief Reader class for quoted strings.
///
@@ -149,7 +157,7 @@
bool escaped;
};
- /// \ingroup io_group
+ /// \ingroup item_io
/// \brief Reader for standard containers.
///
/// Reader for back insertable standard containers. The representation
@@ -191,7 +199,7 @@
};
- /// \ingroup io_group
+ /// \ingroup item_io
///
/// \brief Reader for standard containers.
///
@@ -234,7 +242,7 @@
};
- /// \ingroup io_group
+ /// \ingroup item_io
/// \brief Reader for parsed string.
///
/// Reader for parsed strings. You can give the open and close
@@ -281,7 +289,7 @@
};
- /// \ingroup io_group
+ /// \ingroup item_io
/// \brief Reader for read the whole line.
///
/// Reader for read the whole line.
@@ -311,7 +319,7 @@
bool skipSpaces;
};
- /// \ingroup io_group
+ /// \ingroup item_io
///
/// \brief The default item reader template class.
///
@@ -353,7 +361,13 @@
class DefaultReader<std::multiset<Item> >
: public InsertReader<std::multiset<Item> > {};
- /// \ingroup io_group
+ /// \ingroup item_io
+ ///
+ /// \brief The default item reader for skipping a value in the stream.
+ ///
+ /// The default item reader for skipping a value in the stream.
+ ///
+ /// \author Balazs Dezso
class DefaultSkipper {
public:
typedef std::string Value;
@@ -375,7 +389,8 @@
}
}
};
-
+
+ /// \ingroup item_io
/// \brief Standard ReaderTraits for the GraphReader class.
///
/// Standard ReaderTraits for the GraphReader class.
Modified: hugo/trunk/src/lemon/bits/item_writer.h
==============================================================================
--- hugo/trunk/src/lemon/bits/item_writer.h (original)
+++ hugo/trunk/src/lemon/bits/item_writer.h Sat May 14 19:22:27 2005
@@ -14,7 +14,7 @@
*
*/
-/// \ingroup io_group
+/// \ingroup item_io
/// \file
/// \brief Item writer bits for lemon output.
@@ -34,7 +34,7 @@
template <typename Value>
class DefaultWriter;
- /// \ingroup io_group
+ /// \ingroup item_io
/// \brief Writer class for quoted strings.
///
/// Writer class for quoted strings. It can process the escape
@@ -117,7 +117,7 @@
bool escaped;
};
- /// \ingroup io_group
+ /// \ingroup item_io
///
/// \brief Writer for standard containers.
///
@@ -156,7 +156,7 @@
};
- /// \ingroup io_group
+ /// \ingroup item_io
///
/// \brief The default item writer template class.
///
@@ -197,6 +197,7 @@
class DefaultWriter<std::multiset<Item> >
: public IterableWriter<std::multiset<Item> > {};
+ /// \ingroup item_io
/// \brief Standard WriterTraits for the section writers.
///
/// Standard WriterTraits for the section writers.
More information about the Lemon-commits
mailing list