lemon/graph_writer.h
changeset 1540 7d028a73d7f2
parent 1534 b86aad11f842
child 1744 51d5d41e15b1
     1.1 --- a/lemon/graph_writer.h	Mon Jul 04 17:51:07 2005 +0000
     1.2 +++ b/lemon/graph_writer.h	Tue Jul 05 14:36:10 2005 +0000
     1.3 @@ -37,6 +37,7 @@
     1.4    /// The \c GraphWriter class provides the graph output. 
     1.5    /// Before you read this documentation it might be useful to read the general
     1.6    /// description of  \ref graph-io-page "Graph Input-Output".
     1.7 +  ///
     1.8    /// If you don't need very sophisticated
     1.9    /// behaviour then you can use the versions of the public function
    1.10    /// \ref writeGraph() to output a graph (or a max flow instance etc).
    1.11 @@ -164,6 +165,7 @@
    1.12        return *this;
    1.13      }
    1.14  
    1.15 +
    1.16      /// \brief Issue a new node map writing command for the writer.
    1.17      ///
    1.18     /// This function issues a new <i> node map writing command</i> to the writer.
    1.19 @@ -238,7 +240,8 @@
    1.20      /// Conversion operator to LemonWriter. It makes possible
    1.21      /// to access the encapsulated \e LemonWriter, this way
    1.22      /// you can attach to this writer new instances of 
    1.23 -    /// \e LemonWriter::SectionWriter.
    1.24 +    /// \e LemonWriter::SectionWriter. For more details see
    1.25 +    /// the \ref rwbackground "Background of Reading and Writing".
    1.26      operator LemonWriter&() {
    1.27        return *writer;
    1.28      }
    1.29 @@ -568,7 +571,7 @@
    1.30      ///
    1.31      /// This function issues a new <i> undirected edge map writing
    1.32      /// command</i> to the writer.
    1.33 -    template <typename Writer, typename Map>
    1.34 +   template <typename Writer, typename Map>
    1.35      UndirGraphWriter& writeUndirEdgeMap(std::string name, const Map& map,
    1.36  					const Writer& writer = Writer()) {
    1.37        undir_edgeset_writer.writeUndirEdgeMap(name, map, writer);