diff options
| author | 2014-08-15 21:59:01 -0400 | |
|---|---|---|
| committer | 2014-09-20 00:10:46 +0200 | |
| commit | ccd6f05fe1e6cd5a1611b0df78974fa39869013d (patch) | |
| tree | 3c9e2c431d85cfb683de1724b121819aa16d29aa /include/plist/Dictionary.h | |
| parent | bc147d80b5a608b8a0478041e5198093ecd767b8 (diff) | |
| download | libplist-ccd6f05fe1e6cd5a1611b0df78974fa39869013d.tar.gz libplist-ccd6f05fe1e6cd5a1611b0df78974fa39869013d.tar.bz2 | |
Change Clone() to be const, which required constructors with const references and a const GetValue().
Diffstat (limited to 'include/plist/Dictionary.h')
| -rw-r--r-- | include/plist/Dictionary.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/plist/Dictionary.h b/include/plist/Dictionary.h index c270de3..7a29f14 100644 --- a/include/plist/Dictionary.h +++ b/include/plist/Dictionary.h | |||
| @@ -34,11 +34,11 @@ class Dictionary : public Structure | |||
| 34 | public : | 34 | public : |
| 35 | Dictionary(Node* parent = NULL); | 35 | Dictionary(Node* parent = NULL); |
| 36 | Dictionary(plist_t node, Node* parent = NULL); | 36 | Dictionary(plist_t node, Node* parent = NULL); |
| 37 | Dictionary(Dictionary& d); | 37 | Dictionary(const Dictionary& d); |
| 38 | Dictionary& operator=(Dictionary& d); | 38 | Dictionary& operator=(Dictionary& d); |
| 39 | virtual ~Dictionary(); | 39 | virtual ~Dictionary(); |
| 40 | 40 | ||
| 41 | Node* Clone(); | 41 | Node* Clone() const; |
| 42 | 42 | ||
| 43 | typedef std::map<std::string,Node*>::iterator iterator; | 43 | typedef std::map<std::string,Node*>::iterator iterator; |
| 44 | 44 | ||
| @@ -46,7 +46,8 @@ public : | |||
| 46 | iterator Begin(); | 46 | iterator Begin(); |
| 47 | iterator End(); | 47 | iterator End(); |
| 48 | iterator Find(const std::string& key); | 48 | iterator Find(const std::string& key); |
| 49 | iterator Set(const std::string& key, Node* node); | 49 | iterator Set(const std::string& key, const Node* node); |
| 50 | iterator Set(const std::string& key, const Node& node); | ||
| 50 | iterator Insert(const std::string& key, Node* node) PLIST_WARN_DEPRECATED("use Set() instead"); | 51 | iterator Insert(const std::string& key, Node* node) PLIST_WARN_DEPRECATED("use Set() instead"); |
| 51 | void Remove(Node* node); | 52 | void Remove(Node* node); |
| 52 | void Remove(const std::string& key); | 53 | void Remove(const std::string& key); |
