[Lemon-commits] athos: r3121 - hugo/trunk/lemon
Lemon SVN
svn at lemon.cs.elte.hu
Fri Jan 5 11:59:18 CET 2007
Author: athos
Date: Fri Jan 5 11:59:18 2007
New Revision: 3121
Modified:
hugo/trunk/lemon/graph_reader.h
hugo/trunk/lemon/lemon_reader.h
Log:
I only corrected some errors in the documentation.
Modified: hugo/trunk/lemon/graph_reader.h
==============================================================================
--- hugo/trunk/lemon/graph_reader.h (original)
+++ hugo/trunk/lemon/graph_reader.h Fri Jan 5 11:59:18 2007
@@ -39,8 +39,8 @@
/// Before you read this documentation it might be useful to read the general
/// description of \ref graph-io-page "Graph Input-Output".
///
- /// The file to be read may contain several maps and labeled nodes or
- /// edges.
+ /// The file to be read may contain several maps and labeled
+ /// (designated) nodes or edges.
///
/// If you read a graph you need not read all the maps and items just those
/// that you need. The interface of the \c GraphReader is very similar to
Modified: hugo/trunk/lemon/lemon_reader.h
==============================================================================
--- hugo/trunk/lemon/lemon_reader.h (original)
+++ hugo/trunk/lemon/lemon_reader.h Fri Jan 5 11:59:18 2007
@@ -463,21 +463,22 @@
/// determine what sections are in a lemon file we give only a framework
/// to read a section oriented format.
///
- /// In the Lemon Format each section starts with a line contains a \c \@
- /// character on the first not white space position. This line is the
- /// header line of the section. Each next lines belong to this section
- /// while it does not starts with \c \@ character. This line can start a
- /// new section or if it can close the file with the \c \@end line.
- /// The file format ignore the empty and comment lines. The line is
- /// comment line if it starts with a \c # character.
+ /// In the Lemon Format each section starts with a line containing a
+ /// \c \@ character on the first not white space position. This line
+ /// is the header line of the section. Each of the next lines belong
+ /// to this section until a line starting with \c \@ character is
+ /// found. This line can start a new section or it can close the
+ /// file with the \c \@end line. The file format ignores the empty
+ /// and comment lines. The line is comment line if it starts with a
+ /// \c # character.
///
/// The framework provides an abstract LemonReader::SectionReader class
- /// what defines the interface of a SectionReader. The SectionReader
- /// has the \c header() member function what get a header line string and
- /// decides if it want to process the next section. Several SectionReaders
- /// can be attached to an LemonReader and the first attached what can
- /// process the section will be used. Its \c read() member will called
- /// with a stream contains the section. From this stream the empty and
+ /// that defines the interface of a SectionReader. The SectionReader
+ /// has the \c header() member function that gets a header line string and
+ /// decides if it wants to process the next section. Several SectionReaders
+ /// can be attached to a LemonReader and the first attached that can
+ /// process the section will be used. Its \c read() member will be called
+ /// with a stream containing the section. From this stream the empty and
/// comment lines are filtered out.
///
/// \relates GraphReader
More information about the Lemon-commits
mailing list