lemon/lgf_reader.h
changeset 185 33e45a9b868c
parent 181 e34570db81ea
child 186 9159de5e9657
equal deleted inserted replaced
13:af0c298be055 14:ba2505b47210
  2186     }
  2186     }
  2187 
  2187 
  2188     /// \brief Gives back the node maps for the given section.
  2188     /// \brief Gives back the node maps for the given section.
  2189     ///
  2189     ///
  2190     /// Gives back the node maps for the given section.
  2190     /// Gives back the node maps for the given section.
  2191     const std::vector<std::string>& nodeMaps(int i) const {
  2191     const std::vector<std::string>& nodeMapNames(int i) const {
  2192       return _node_maps[i];
  2192       return _node_maps[i];
  2193     }
  2193     }
  2194 
  2194 
  2195     /// @}
  2195     /// @}
  2196 
  2196 
  2214     }
  2214     }
  2215 
  2215 
  2216     /// \brief Gives back the arc/edge maps for the given section.
  2216     /// \brief Gives back the arc/edge maps for the given section.
  2217     ///
  2217     ///
  2218     /// Gives back the arc/edge maps for the given section.
  2218     /// Gives back the arc/edge maps for the given section.
  2219     /// \note It is synonym of \c edgeMaps().
  2219     /// \note It is synonym of \c edgeMapNames().
  2220     const std::vector<std::string>& arcMaps(int i) const {
  2220     const std::vector<std::string>& arcMapNames(int i) const {
  2221       return _edge_maps[i];
  2221       return _edge_maps[i];
  2222     }
  2222     }
  2223 
  2223 
  2224     /// @}
  2224     /// @}
  2225 
  2225 
  2243     }
  2243     }
  2244 
  2244 
  2245     /// \brief Gives back the edge maps for the given section.
  2245     /// \brief Gives back the edge maps for the given section.
  2246     ///
  2246     ///
  2247     /// Gives back the edge maps for the given section.
  2247     /// Gives back the edge maps for the given section.
  2248     /// \note It is synonym of \c arcMaps().
  2248     /// \note It is synonym of \c arcMapNames().
  2249     const std::vector<std::string>& edgeMaps(int i) const {
  2249     const std::vector<std::string>& edgeMapNames(int i) const {
  2250       return _edge_maps[i];
  2250       return _edge_maps[i];
  2251     }
  2251     }
  2252 
  2252 
  2253     /// @}
  2253     /// @}
  2254 
  2254 
  2263     }
  2263     }
  2264 
  2264 
  2265     /// \brief Returns the section name at the given position. 
  2265     /// \brief Returns the section name at the given position. 
  2266     ///
  2266     ///
  2267     /// Returns the section name at the given position. 
  2267     /// Returns the section name at the given position. 
  2268     const std::string& attributeSection(int i) const {
  2268     const std::string& attributeSectionNames(int i) const {
  2269       return _attribute_sections[i];
  2269       return _attribute_sections[i];
  2270     }
  2270     }
  2271 
  2271 
  2272     /// \brief Gives back the attributes for the given section.
  2272     /// \brief Gives back the attributes for the given section.
  2273     ///
  2273     ///