diff -r e5c0c5cc477f -r 17eb3eaad9f8 lemon/graph_reader.h --- a/lemon/graph_reader.h Thu Feb 02 17:09:09 2006 +0000 +++ b/lemon/graph_reader.h Thu Feb 02 17:43:24 2006 +0000 @@ -54,9 +54,9 @@ /// whitespaces, therefore it has some extra possibilities to control how /// it should skip the values when the string representation contains spaces. /// - /// \code + ///\code /// GraphReader reader(std::cin, graph); - /// \endcode + ///\endcode /// /// The \c readNodeMap() function reads a map from the \c \@nodeset section. /// If there is a map that you do not want to read from the file and there is @@ -64,31 +64,31 @@ /// call the \c skipNodeMap() template member function with proper /// parameters. /// - /// \code + ///\code /// reader.readNodeMap("coords", coords); /// /// reader.skipNodeMap("description", desc); /// /// reader.readNodeMap("color", colorMap); - /// \endcode + ///\endcode /// /// With the \c readEdgeMap() member function you can give an edge map /// reading command similar to the NodeMaps. /// - /// \code + ///\code /// reader.readEdgeMap("weight", weightMap); /// reader.readEdgeMap("label", labelMap); - /// \endcode + ///\endcode /// /// With \c readNode() and \c readEdge() functions you can read /// labeled Nodes and Edges. /// - /// \code + ///\code /// reader.readNode("source", sourceNode); /// reader.readNode("target", targetNode); /// /// reader.readEdge("observed", edge); - /// \endcode + ///\endcode /// /// With the \c readAttribute() functions you can read an attribute /// into a variable. You can specify the reader for the attribute as @@ -97,9 +97,9 @@ /// After you give all read commands you must call the \c run() member /// function, which executes all the commands. /// - /// \code + ///\code /// reader.run(); - /// \endcode + ///\endcode /// /// \see DefaultReaderTraits /// \see QuotedStringReader @@ -398,9 +398,9 @@ /// whitespaces, therefore it has some extra possibilities to control how /// it should skip the values when the string representation contains spaces. /// - /// \code + ///\code /// UGraphReader reader(std::cin, graph); - /// \endcode + ///\endcode /// /// The \c readNodeMap() function reads a map from the \c \@nodeset section. /// If there is a map that you do not want to read from the file and there is @@ -408,39 +408,39 @@ /// call the \c skipNodeMap() template member function with proper /// parameters. /// - /// \code + ///\code /// reader.readNodeMap("coords", coords); /// /// reader.skipNodeMap("description", desc); /// /// reader.readNodeMap("color", colorMap); - /// \endcode + ///\endcode /// /// With the \c readUEdgeMap() member function you can give an /// uedge map reading command similar to the NodeMaps. /// - /// \code + ///\code /// reader.readUEdgeMap("capacity", capacityMap); - /// \endcode + ///\endcode /// /// The reading of the directed edge maps is just a syntactical sugar. /// It reads two undirected edgemaps into a directed edge map. The /// undirected edge maps' name should be start with the \c '+' and the /// \c '-' character and the same. /// - /// \code + ///\code /// reader.readEdgeMap("flow", flowMap); - /// \endcode + ///\endcode /// /// With \c readNode() and \c readUEdge() functions you can read /// labeled Nodes and UEdges. /// - /// \code + ///\code /// reader.readNode("source", sourceNode); /// reader.readNode("target", targetNode); /// /// reader.readUEdge("observed", uEdge); - /// \endcode + ///\endcode /// /// With the \c readAttribute() functions you can read an attribute /// in a variable. You can specify the reader for the attribute as @@ -449,9 +449,9 @@ /// After you give all read commands you must call the \c run() member /// function, which execute all the commands. /// - /// \code + ///\code /// reader.run(); - /// \endcode + ///\endcode /// /// \see GraphReader /// \see DefaultReaderTraits