# HG changeset patch # User athos # Date 1167994758 0 # Node ID c1e936e6a46b7a0aebef4245fc44342f8daaa203 # Parent 8070a099ffb60217eedf573f382aa9c3628c16b9 I only corrected some errors in the documentation. diff -r 8070a099ffb6 -r c1e936e6a46b lemon/graph_reader.h --- a/lemon/graph_reader.h Tue Dec 19 15:53:42 2006 +0000 +++ b/lemon/graph_reader.h Fri Jan 05 10:59:18 2007 +0000 @@ -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 diff -r 8070a099ffb6 -r c1e936e6a46b lemon/lemon_reader.h --- a/lemon/lemon_reader.h Tue Dec 19 15:53:42 2006 +0000 +++ b/lemon/lemon_reader.h Fri Jan 05 10:59:18 2007 +0000 @@ -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