diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-08-23 14:36:33 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-08-23 14:36:33 -0700 |
commit | b1c8827efedc245d47f89cf8b4db30f495498ae7 (patch) | |
tree | 6a222a14f5f1e0e9a1c4de5ccd72a76308cafe0b /src/cstore/cstore.hpp | |
parent | 14df7aa3c937ed8907bd7e9b2657526233691803 (diff) | |
parent | f15df25b9693b8802912ddd24f7f8aeaa2893380 (diff) | |
download | vyatta-cfg-b1c8827efedc245d47f89cf8b4db30f495498ae7.tar.gz vyatta-cfg-b1c8827efedc245d47f89cf8b4db30f495498ae7.zip |
Merge branch 'mendocino' of suva.vyatta.com:/git/vyatta-cfg into mendocino
Diffstat (limited to 'src/cstore/cstore.hpp')
-rw-r--r-- | src/cstore/cstore.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cstore/cstore.hpp b/src/cstore/cstore.hpp index 492462e..4b07fab 100644 --- a/src/cstore/cstore.hpp +++ b/src/cstore/cstore.hpp @@ -144,6 +144,7 @@ public: virtual bool inSession() = 0; // common bool markCfgPathChanged(const vector<string>& path_comps); + bool unmarkCfgPathChanged(const vector<string>& path_comps); // XXX load //bool unmarkCfgPathDeactivatedDescendants(const vector<string>& path_comps); @@ -240,6 +241,9 @@ public: void cfgPathGetDeletedChildNodesDA(const vector<string>& path_comps, vector<string>& cnodes, bool include_deactivated = true); + void cfgPathGetDeletedValuesDA(const vector<string>& path_comps, + vector<string>& dvals, + bool include_deactivated = true); void cfgPathGetChildNodesStatusDA(const vector<string>& path_comps, map<string, string>& cmap); @@ -303,6 +307,7 @@ private: virtual bool mark_deactivated() = 0; virtual bool unmark_deactivated() = 0; virtual bool unmark_deactivated_descendants() = 0; + virtual bool unmark_changed_with_descendants() = 0; virtual bool mark_changed() = 0; virtual bool remove_comment() = 0; virtual bool set_comment(const string& comment) = 0; |