From c1363bea107b15bdc10ce80671747be891661889 Mon Sep 17 00:00:00 2001 From: Jonathan Beck Date: Mon, 26 Oct 2009 18:41:15 +0100 Subject: Add Set/Get Parent and a helper to create a Node from a plist_t. --- src/Real.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Real.cpp') diff --git a/src/Real.cpp b/src/Real.cpp index e527f6d..a877b40 100644 --- a/src/Real.cpp +++ b/src/Real.cpp @@ -24,11 +24,11 @@ namespace PList { -Real::Real() : Node(PLIST_REAL) +Real::Real(Node* parent) : Node(PLIST_REAL, parent) { } -Real::Real(plist_t node) : Node(node) +Real::Real(plist_t node, Node* parent) : Node(node, parent) { } -- cgit v1.1-32-gdbae