lemon/lemon_reader.h
changeset 2334 c1e936e6a46b
parent 2282 9d7b12f83daa
child 2368 6b2e8b734ae7
     1.1 --- a/lemon/lemon_reader.h	Tue Dec 19 15:53:42 2006 +0000
     1.2 +++ b/lemon/lemon_reader.h	Fri Jan 05 10:59:18 2007 +0000
     1.3 @@ -463,21 +463,22 @@
     1.4    /// determine what sections are in a lemon file we give only a framework
     1.5    /// to read a section oriented format.
     1.6    ///
     1.7 -  /// In the Lemon Format each section starts with a line contains a \c \@
     1.8 -  /// character on the first not white space position. This line is the
     1.9 -  /// header line of the section. Each next lines belong to this section
    1.10 -  /// while it does not starts with \c \@ character. This line can start a 
    1.11 -  /// new section or if it can close the file with the \c \@end line.
    1.12 -  /// The file format ignore the empty and comment lines. The line is
    1.13 -  /// comment line if it starts with a \c # character. 
    1.14 +  /// In the Lemon Format each section starts with a line containing a
    1.15 +  /// \c \@ character on the first not white space position. This line
    1.16 +  /// is the header line of the section. Each of the next lines belong
    1.17 +  /// to this section until a line starting with \c \@ character is
    1.18 +  /// found. This line can start a new section or it can close the
    1.19 +  /// file with the \c \@end line.  The file format ignores the empty
    1.20 +  /// and comment lines. The line is comment line if it starts with a
    1.21 +  /// \c # character.
    1.22    ///
    1.23    /// The framework provides an abstract LemonReader::SectionReader class
    1.24 -  /// what defines the interface of a SectionReader. The SectionReader
    1.25 -  /// has the \c header() member function what get a header line string and
    1.26 -  /// decides if it want to process the next section. Several SectionReaders
    1.27 -  /// can be attached to an LemonReader and the first attached what can
    1.28 -  /// process the section will be used. Its \c read() member will called
    1.29 -  /// with a stream contains the section. From this stream the empty and
    1.30 +  /// that defines the interface of a SectionReader. The SectionReader
    1.31 +  /// has the \c header() member function that gets a header line string and
    1.32 +  /// decides if it wants to process the next section. Several SectionReaders
    1.33 +  /// can be attached to a LemonReader and the first attached that can
    1.34 +  /// process the section will be used. Its \c read() member will be called
    1.35 +  /// with a stream containing the section. From this stream the empty and
    1.36    /// comment lines are filtered out.
    1.37    ///
    1.38    /// \relates GraphReader