summaryrefslogtreecommitdiffstats
path: root/include/plist/Structure.h
diff options
context:
space:
mode:
authorGravatar Jonathan Beck2009-10-26 18:41:15 +0100
committerGravatar Jonathan Beck2009-10-26 18:41:15 +0100
commitc1363bea107b15bdc10ce80671747be891661889 (patch)
tree1a8ce452eb6c1110ea0cd88dec155e99bfe7b69b /include/plist/Structure.h
parentbef50c0873aad5d8cd516428828e79fc05a43913 (diff)
downloadlibplist-c1363bea107b15bdc10ce80671747be891661889.tar.gz
libplist-c1363bea107b15bdc10ce80671747be891661889.tar.bz2
Add Set/Get Parent and a helper to create a Node from a plist_t.
Diffstat (limited to 'include/plist/Structure.h')
-rw-r--r--include/plist/Structure.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/plist/Structure.h b/include/plist/Structure.h
index 4910439..6f100cc 100644
--- a/include/plist/Structure.h
+++ b/include/plist/Structure.h
@@ -40,8 +40,8 @@ class Structure : public Node
40 std::vector<char> ToBin(); 40 std::vector<char> ToBin();
41 41
42 protected: 42 protected:
43 Structure(); 43 Structure(Node* parent = NULL);
44 Structure(plist_type type); 44 Structure(plist_type type, Node* parent = NULL);
45 45
46 private: 46 private:
47 Structure(Structure& s); 47 Structure(Structure& s);