summaryrefslogtreecommitdiff
path: root/src/cnode/cnode.hpp
diff options
context:
space:
mode:
authorAn-Cheng Huang <ancheng@vyatta.com>2010-11-10 20:17:56 -0800
committerAn-Cheng Huang <ancheng@vyatta.com>2010-11-10 20:17:56 -0800
commit91b4c34c1fcc19ecf16f53ce5c097376b9175233 (patch)
treec3f8838b3b3a445bf32f06ffd3faf833c5b1456c /src/cnode/cnode.hpp
parentd18cfa3bfb5be81990db3cea9f3f502be237d945 (diff)
downloadvyatta-cfg-91b4c34c1fcc19ecf16f53ce5c097376b9175233.tar.gz
vyatta-cfg-91b4c34c1fcc19ecf16f53ce5c097376b9175233.zip
consolidate similar logic and simplify code
Diffstat (limited to 'src/cnode/cnode.hpp')
-rw-r--r--src/cnode/cnode.hpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cnode/cnode.hpp b/src/cnode/cnode.hpp
index 3143370..0be02ca 100644
--- a/src/cnode/cnode.hpp
+++ b/src/cnode/cnode.hpp
@@ -43,7 +43,6 @@ public:
const std::string& getValue() const { return _value; }
const std::vector<std::string>& getValues() const { return _values; }
const std::string& getComment() const { return _comment; }
- const std::vector<CfgNode *>& getTagValues() const { return _tag_values; }
const std::vector<CfgNode *>& getChildNodes() const { return _child_nodes; }
private:
@@ -60,7 +59,6 @@ private:
std::string _value;
std::vector<std::string> _values;
std::string _comment;
- std::vector<CfgNode *> _tag_values;
std::vector<CfgNode *> _child_nodes;
};