From 8186a9d371b2a31122643f75c65cef4e438ac97b Mon Sep 17 00:00:00 2001 From: Jonathan Beck Date: Thu, 15 Oct 2009 19:28:30 +0200 Subject: Fix various mistakes in C++ bindings. --- src/Real.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/Real.cpp') diff --git a/src/Real.cpp b/src/Real.cpp index 41c5d87..5416887 100644 --- a/src/Real.cpp +++ b/src/Real.cpp @@ -28,6 +28,10 @@ Real::Real() : Node(PLIST_REAL) { } +Real::Real(plist_t node) : Node(node) +{ +} + Real::Real(double d) : Node(PLIST_REAL) { plist_set_real_val(_node, d); -- cgit v1.1-32-gdbae