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