diff -r e34570db81ea -r 9c6dfb5141d3 lemon/lgf_reader.h --- a/lemon/lgf_reader.h Wed Jun 18 13:07:18 2008 +0100 +++ b/lemon/lgf_reader.h Wed Jun 18 13:52:23 2008 +0100 @@ -2188,7 +2188,7 @@ /// \brief Gives back the node maps for the given section. /// /// Gives back the node maps for the given section. - const std::vector& nodeMaps(int i) const { + const std::vector& nodeMapNames(int i) const { return _node_maps[i]; } @@ -2216,8 +2216,8 @@ /// \brief Gives back the arc/edge maps for the given section. /// /// Gives back the arc/edge maps for the given section. - /// \note It is synonym of \c edgeMaps(). - const std::vector& arcMaps(int i) const { + /// \note It is synonym of \c edgeMapNames(). + const std::vector& arcMapNames(int i) const { return _edge_maps[i]; } @@ -2245,8 +2245,8 @@ /// \brief Gives back the edge maps for the given section. /// /// Gives back the edge maps for the given section. - /// \note It is synonym of \c arcMaps(). - const std::vector& edgeMaps(int i) const { + /// \note It is synonym of \c arcMapNames(). + const std::vector& edgeMapNames(int i) const { return _edge_maps[i]; } @@ -2265,7 +2265,7 @@ /// \brief Returns the section name at the given position. /// /// Returns the section name at the given position. - const std::string& attributeSection(int i) const { + const std::string& attributeSectionNames(int i) const { return _attribute_sections[i]; }