# HG changeset patch # User Alpar Juttner # Date 2008-06-18 14:52:23 # Node ID 9c6dfb5141d37ae0d3df1aafc182d23fa8bff535 # Parent e34570db81ea22faf535498fffd54f97591f7f4a *Maps() -> *MapNames() in LgfContents diff --git a/lemon/lgf_reader.h b/lemon/lgf_reader.h --- a/lemon/lgf_reader.h +++ b/lemon/lgf_reader.h @@ -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]; }