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.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/plist/Data.h b/include/plist/Data.h
index c9c089b..3f1c329 100644
--- a/include/plist/Data.h
+++ b/include/plist/Data.h
@@ -34,14 +34,14 @@ public :
Data(Node* parent = NULL);
Data(plist_t node, Node* parent = NULL);
Data(const Data& d);
- Data& operator=(Data& d);
- Data(const std::vector<char>& buff);
+ Data& operator=(const Data& b);
+ Data(const std::vector<uint8_t>& buff);
virtual ~Data();
Node* Clone() const;
- void SetValue(const std::vector<char>& buff);
- std::vector<char> GetValue() const;
+ void SetValue(const std::vector<uint8_t>& buff);
+ std::vector<uint8_t> GetValue() const;
};
};