[Lemon-commits] Alpar Juttner: *Maps() -> *MapNames() in LgfCont...

Lemon HG hg at lemon.cs.elte.hu
Fri Jun 20 12:16:21 CEST 2008


details:   http://lemon.cs.elte.hu/hg/lemon/rev/9c6dfb5141d3
changeset: 182:9c6dfb5141d3
user:      Alpar Juttner <alpar [at] cs.elte.hu>
date:      Wed Jun 18 13:52:23 2008 +0100
description:
	*Maps() -> *MapNames() in LgfContents

diffstat:

1 file changed, 6 insertions(+), 6 deletions(-)
lemon/lgf_reader.h |   12 ++++++------

diffs (43 lines):

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<std::string>& nodeMaps(int i) const {
+    const std::vector<std::string>& 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<std::string>& arcMaps(int i) const {
+    /// \note It is synonym of \c edgeMapNames().
+    const std::vector<std::string>& 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<std::string>& edgeMaps(int i) const {
+    /// \note It is synonym of \c arcMapNames().
+    const std::vector<std::string>& 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];
     }
 



More information about the Lemon-commits mailing list