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 /src/Integer.cpp | |
parent | a922b714c9b75fdc67735d674758d4eaedfd32f9 (diff) | |
download | libplist-8186a9d371b2a31122643f75c65cef4e438ac97b.tar.gz libplist-8186a9d371b2a31122643f75c65cef4e438ac97b.tar.bz2 |
Fix various mistakes in C++ bindings.
Diffstat (limited to 'src/Integer.cpp')
-rw-r--r-- | src/Integer.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Integer.cpp b/src/Integer.cpp index d4a7645..2a7429a 100644 --- a/src/Integer.cpp +++ b/src/Integer.cpp @@ -28,6 +28,10 @@ Integer::Integer() : Node(PLIST_UINT) { } +Integer::Integer(plist_t node) : Node(node) +{ +} + Integer::Integer(uint64_t i) : Node(PLIST_UINT) { plist_set_uint_val(_node, i); |