summaryrefslogtreecommitdiffstats
path: root/include/plist/Node.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/plist/Node.h')
-rw-r--r--include/plist/Node.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/plist/Node.h b/include/plist/Node.h
index 0f6100e..3be900a 100644
--- a/include/plist/Node.h
+++ b/include/plist/Node.h
@@ -31,7 +31,6 @@ class Node
31{ 31{
32 public : 32 public :
33 virtual ~Node(); 33 virtual ~Node();
34 Node(plist_t node);
35 Node(Node& node); 34 Node(Node& node);
36 Node& operator=(const Node& node); 35 Node& operator=(const Node& node);
37 36
@@ -40,6 +39,7 @@ class Node
40 39
41 protected: 40 protected:
42 Node(); 41 Node();
42 Node(plist_t node);
43 Node(plist_type type); 43 Node(plist_type type);
44 plist_t _node; 44 plist_t _node;
45}; 45};