lemon/graph_reader.h
changeset 2100 6fbe90faf02a
parent 2084 59769591eb60
child 2200 2f2ac1b1ca1e
equal deleted inserted replaced
13:76fa4c0da147 14:7c56f002f7f7
    46   /// that you need. The interface of the \c GraphReader is very similar to
    46   /// that you need. The interface of the \c GraphReader is very similar to
    47   /// the GraphWriter but the reading method does not depend on the order the
    47   /// the GraphWriter but the reading method does not depend on the order the
    48   /// given commands (i.e. you don't have to insist on the order in which the
    48   /// given commands (i.e. you don't have to insist on the order in which the
    49   /// maps are given in the file).
    49   /// maps are given in the file).
    50   ///
    50   ///
    51   /// The reader object assumes that not readed values do not contain 
    51   /// The reader object assumes that not read values do not contain 
    52   /// whitespaces, therefore it has some extra possibilities to control how
    52   /// whitespaces, therefore it has some extra possibilities to control how
    53   /// it should skip the values when the string representation contains spaces.
    53   /// it should skip the values when the string representation contains spaces.
    54   ///
    54   ///
    55   ///\code
    55   ///\code
    56   /// GraphReader<ListGraph> reader(std::cin, graph);
    56   /// GraphReader<ListGraph> reader(std::cin, graph);
   386   /// If you read a graph you need not read all the maps and items just those
   386   /// If you read a graph you need not read all the maps and items just those
   387   /// that you need. The interface of the \c UGraphReader is very similar
   387   /// that you need. The interface of the \c UGraphReader is very similar
   388   /// to the UGraphWriter but the reading method does not depend on the
   388   /// to the UGraphWriter but the reading method does not depend on the
   389   /// order of the given commands.
   389   /// order of the given commands.
   390   ///
   390   ///
   391   /// The reader object suppose that each not readed value does not contain 
   391   /// The reader object suppose that each not read value does not contain 
   392   /// whitespaces, therefore it has some extra possibilities to control how
   392   /// whitespaces, therefore it has some extra possibilities to control how
   393   /// it should skip the values when the string representation contains spaces.
   393   /// it should skip the values when the string representation contains spaces.
   394   ///
   394   ///
   395   ///\code
   395   ///\code
   396   /// UGraphReader<ListUGraph> reader(std::cin, graph);
   396   /// UGraphReader<ListUGraph> reader(std::cin, graph);