diff options
| author | 2009-10-26 18:41:15 +0100 | |
|---|---|---|
| committer | 2009-10-26 18:41:15 +0100 | |
| commit | c1363bea107b15bdc10ce80671747be891661889 (patch) | |
| tree | 1a8ce452eb6c1110ea0cd88dec155e99bfe7b69b /src/Boolean.cpp | |
| parent | bef50c0873aad5d8cd516428828e79fc05a43913 (diff) | |
| download | libplist-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 'src/Boolean.cpp')
| -rw-r--r-- | src/Boolean.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Boolean.cpp b/src/Boolean.cpp index 03d17c8..3b20f45 100644 --- a/src/Boolean.cpp +++ b/src/Boolean.cpp | |||
| @@ -24,11 +24,11 @@ | |||
| 24 | namespace PList | 24 | namespace PList |
| 25 | { | 25 | { |
| 26 | 26 | ||
| 27 | Boolean::Boolean() : Node(PLIST_BOOLEAN) | 27 | Boolean::Boolean(Node* parent) : Node(PLIST_BOOLEAN, parent) |
| 28 | { | 28 | { |
| 29 | } | 29 | } |
| 30 | 30 | ||
| 31 | Boolean::Boolean(plist_t node) : Node(node) | 31 | Boolean::Boolean(plist_t node, Node* parent) : Node(node, parent) |
| 32 | { | 32 | { |
| 33 | } | 33 | } |
| 34 | 34 | ||
