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 3f1c329..b566a6c 100644
--- a/include/plist/Data.h
+++ b/include/plist/Data.h
@@ -35,13 +35,13 @@ public :
35 Data(plist_t node, Node* parent = NULL); 35 Data(plist_t node, Node* parent = NULL);
36 Data(const Data& d); 36 Data(const Data& d);
37 Data& operator=(const Data& b); 37 Data& operator=(const Data& b);
38 Data(const std::vector<uint8_t>& buff); 38 Data(const std::vector<char>& buff);
39 virtual ~Data(); 39 virtual ~Data();
40 40
41 Node* Clone() const; 41 Node* Clone() const;
42 42
43 void SetValue(const std::vector<uint8_t>& buff); 43 void SetValue(const std::vector<char>& buff);
44 std::vector<uint8_t> GetValue() const; 44 std::vector<char> GetValue() const;
45}; 45};
46 46
47}; 47};