diff options
Diffstat (limited to 'include/plist/Data.h')
-rw-r--r-- | include/plist/Data.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/plist/Data.h b/include/plist/Data.h index 3db98f7..59a0096 100644 --- a/include/plist/Data.h +++ b/include/plist/Data.h @@ -31,8 +31,8 @@ namespace PList class Data : public Node { public : - Data(); - Data(plist_t node); + Data(Node* parent = NULL); + Data(plist_t node, Node* parent = NULL); Data(Data& d); Data& operator=(Data& d); Data(const std::vector<char>& buff); |