diff options
author | Jonathan Beck | 2009-10-15 19:28:30 +0200 |
---|---|---|
committer | Jonathan Beck | 2009-10-15 19:28:30 +0200 |
commit | 8186a9d371b2a31122643f75c65cef4e438ac97b (patch) | |
tree | f059e0199ac4b8b0425c910a11f595b42490448a /include/plist/Node.h | |
parent | a922b714c9b75fdc67735d674758d4eaedfd32f9 (diff) | |
download | libplist-8186a9d371b2a31122643f75c65cef4e438ac97b.tar.gz libplist-8186a9d371b2a31122643f75c65cef4e438ac97b.tar.bz2 |
Fix various mistakes in C++ bindings.
Diffstat (limited to 'include/plist/Node.h')
-rw-r--r-- | include/plist/Node.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/plist/Node.h b/include/plist/Node.h index 0f6100e..3be900a 100644 --- a/include/plist/Node.h +++ b/include/plist/Node.h @@ -31,7 +31,6 @@ class Node { public : virtual ~Node(); - Node(plist_t node); Node(Node& node); Node& operator=(const Node& node); @@ -40,6 +39,7 @@ class Node protected: Node(); + Node(plist_t node); Node(plist_type type); plist_t _node; }; |