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/Node.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/Node.h')
| -rw-r--r-- | include/plist/Node.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/plist/Node.h b/include/plist/Node.h index fdd26ee..9068880 100644 --- a/include/plist/Node.h +++ b/include/plist/Node.h | |||
| @@ -32,11 +32,11 @@ class Node | |||
| 32 | public : | 32 | public : |
| 33 | virtual ~Node(); | 33 | virtual ~Node(); |
| 34 | 34 | ||
| 35 | virtual Node* Clone() = 0; | 35 | virtual Node* Clone() const = 0; |
| 36 | 36 | ||
| 37 | Node * GetParent(); | 37 | Node * GetParent() const; |
| 38 | plist_type GetType(); | 38 | plist_type GetType() const; |
| 39 | plist_t GetPlist(); | 39 | plist_t GetPlist() const; |
| 40 | 40 | ||
| 41 | static Node* FromPlist(plist_t node, Node* parent = NULL); | 41 | static Node* FromPlist(plist_t node, Node* parent = NULL); |
| 42 | 42 | ||
