summaryrefslogtreecommitdiffstats
path: root/include/plist/Key.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/plist/Key.h')
-rw-r--r--include/plist/Key.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/plist/Key.h b/include/plist/Key.h
index 3de09cf..c680f1c 100644
--- a/include/plist/Key.h
+++ b/include/plist/Key.h
@@ -33,15 +33,15 @@ class Key : public Node
33public : 33public :
34 Key(Node* parent = NULL); 34 Key(Node* parent = NULL);
35 Key(plist_t node, Node* parent = NULL); 35 Key(plist_t node, Node* parent = NULL);
36 Key(Key& s); 36 Key(const Key& s);
37 Key& operator=(Key& s); 37 Key& operator=(Key& s);
38 Key(const std::string& s); 38 Key(const std::string& s);
39 virtual ~Key(); 39 virtual ~Key();
40 40
41 Node* Clone(); 41 Node* Clone() const;
42 42
43 void SetValue(const std::string& s); 43 void SetValue(const std::string& s);
44 std::string GetValue(); 44 std::string GetValue() const;
45}; 45};
46 46
47}; 47};