diff options
author | An-Cheng Huang <ancheng@vyatta.com> | 2010-11-10 20:17:56 -0800 |
---|---|---|
committer | An-Cheng Huang <ancheng@vyatta.com> | 2010-11-10 20:17:56 -0800 |
commit | 91b4c34c1fcc19ecf16f53ce5c097376b9175233 (patch) | |
tree | c3f8838b3b3a445bf32f06ffd3faf833c5b1456c /src/cnode/cnode.hpp | |
parent | d18cfa3bfb5be81990db3cea9f3f502be237d945 (diff) | |
download | vyatta-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.hpp | 2 |
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; }; |