equal
deleted
inserted
replaced
425 /// node("target", trg). |
425 /// node("target", trg). |
426 /// attribute("caption", caption). |
426 /// attribute("caption", caption). |
427 /// run(); |
427 /// run(); |
428 ///\endcode |
428 ///\endcode |
429 /// |
429 /// |
430 /// By default the reader uses the first section in the file of the |
430 /// By default, the reader uses the first section in the file of the |
431 /// proper type. If a section has an optional name, then it can be |
431 /// proper type. If a section has an optional name, then it can be |
432 /// selected for reading by giving an optional name parameter to the |
432 /// selected for reading by giving an optional name parameter to the |
433 /// \c nodes(), \c arcs() or \c attributes() functions. |
433 /// \c nodes(), \c arcs() or \c attributes() functions. |
434 /// |
434 /// |
435 /// The \c useNodes() and \c useArcs() functions are used to tell the reader |
435 /// The \c useNodes() and \c useArcs() functions are used to tell the reader |
2219 /// parameter. At the reading process, each line of the section |
2219 /// parameter. At the reading process, each line of the section |
2220 /// will be given to the functor object. However, the empty lines |
2220 /// will be given to the functor object. However, the empty lines |
2221 /// and the comment lines are filtered out, and the leading |
2221 /// and the comment lines are filtered out, and the leading |
2222 /// whitespaces are trimmed from each processed string. |
2222 /// whitespaces are trimmed from each processed string. |
2223 /// |
2223 /// |
2224 /// For example let's see a section, which contain several |
2224 /// For example, let's see a section, which contain several |
2225 /// integers, which should be inserted into a vector. |
2225 /// integers, which should be inserted into a vector. |
2226 ///\code |
2226 ///\code |
2227 /// @numbers |
2227 /// @numbers |
2228 /// 12 45 23 |
2228 /// 12 45 23 |
2229 /// 4 |
2229 /// 4 |