lemon/graph_reader.h
changeset 2200 2f2ac1b1ca1e
parent 2100 6fbe90faf02a
child 2334 c1e936e6a46b
     1.1 --- a/lemon/graph_reader.h	Wed Sep 06 09:55:37 2006 +0000
     1.2 +++ b/lemon/graph_reader.h	Wed Sep 06 10:01:15 2006 +0000
     1.3 @@ -344,36 +344,6 @@
     1.4    };
     1.5  
     1.6  
     1.7 -  /// \brief Read a graph from the input.
     1.8 -  ///
     1.9 -  /// It is a helper function to read a graph from the given input
    1.10 -  /// stream. It gives back an GraphReader object and this object
    1.11 -  /// can read more maps, labeled nodes, edges and attributes.
    1.12 -  ///
    1.13 -  /// \warning Do not forget to call the \c run() function.
    1.14 -  ///
    1.15 -  /// \param is The input stream.
    1.16 -  /// \param g The graph.
    1.17 -  template<typename Graph>
    1.18 -  GraphReader<Graph> graphReader(std::istream& is, Graph &g) {
    1.19 -    return GraphReader<Graph>(is, g);
    1.20 -  }
    1.21 -
    1.22 -  /// \brief Read a graph from the input.
    1.23 -  ///
    1.24 -  /// It is a helper function to read a graph from the given input
    1.25 -  /// file. It gives back an GraphReader object and this object
    1.26 -  /// can read more maps, labeled nodes, edges and attributes.
    1.27 -  ///
    1.28 -  /// \warning Do not forget to call the \c run() function.
    1.29 -  ///
    1.30 -  /// \param fn The input filename.
    1.31 -  /// \param g The graph.
    1.32 -  template<typename Graph>
    1.33 -  GraphReader<Graph> graphReader(const std::string& fn, Graph &g) {
    1.34 -    return GraphReader<Graph>(fn, g);
    1.35 -  }
    1.36 -
    1.37    /// \brief The undirected graph reader class.
    1.38    ///
    1.39    /// The \c UGraphReader class provides the graph input. 
    1.40 @@ -755,37 +725,6 @@
    1.41      AttributeReader<ReaderTraits> attribute_reader;
    1.42    };
    1.43  
    1.44 -  /// \brief Read an undirected graph from the input.
    1.45 -  ///
    1.46 -  /// It is a helper function to read an undirected graph from the given input
    1.47 -  /// stream. It gives back an UGraphReader object and this object
    1.48 -  /// can read more maps, labeled nodes, edges, undirected edges and
    1.49 -  /// attributes.
    1.50 -  ///
    1.51 -  /// \warning Do not forget to call the \c run() function.
    1.52 -  ///
    1.53 -  /// \param is The input stream.
    1.54 -  /// \param g The graph.
    1.55 -  template<typename Graph>
    1.56 -  UGraphReader<Graph> uGraphReader(std::istream& is, Graph &g) {
    1.57 -    return GraphReader<Graph>(is, g);
    1.58 -  }
    1.59 -
    1.60 -  /// \brief Read an undirected graph from the input.
    1.61 -  ///
    1.62 -  /// It is a helper function to read an undirected graph from the given input
    1.63 -  /// file. It gives back an UGraphReader object and this object
    1.64 -  /// can read more maps, labeled nodes, edges, undirected edges and 
    1.65 -  /// attributes.
    1.66 -  ///
    1.67 -  /// \warning Do not forget to call the \c run() function.
    1.68 -  ///
    1.69 -  /// \param fn The input filename.
    1.70 -  /// \param g The graph.
    1.71 -  template<typename Graph>
    1.72 -  UGraphReader<Graph> uGraphReader(const std::string& fn, Graph &g) {
    1.73 -    return GraphReader<Graph>(fn, g);
    1.74 -  }
    1.75  
    1.76    /// @}
    1.77  }