diff options
Diffstat (limited to 'include/plist/Data.h')
-rw-r--r-- | include/plist/Data.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/plist/Data.h b/include/plist/Data.h index c9c089b..1de88aa 100644 --- a/include/plist/Data.h +++ b/include/plist/Data.h @@ -34,8 +34,9 @@ public : Data(Node* parent = NULL); Data(plist_t node, Node* parent = NULL); Data(const Data& d); - Data& operator=(Data& d); + Data& operator=(const Data& b); Data(const std::vector<char>& buff); + Data(const char* buff, uint64_t size); virtual ~Data(); Node* Clone() const; |