summaryrefslogtreecommitdiffstats
path: root/include/plist/Boolean.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/plist/Boolean.h')
-rw-r--r--include/plist/Boolean.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/plist/Boolean.h b/include/plist/Boolean.h
index 48489da..307a1ff 100644
--- a/include/plist/Boolean.h
+++ b/include/plist/Boolean.h
@@ -32,15 +32,15 @@ class Boolean : public Node
32public : 32public :
33 Boolean(Node* parent = NULL); 33 Boolean(Node* parent = NULL);
34 Boolean(plist_t node, Node* parent = NULL); 34 Boolean(plist_t node, Node* parent = NULL);
35 Boolean(Boolean& b); 35 Boolean(const Boolean& b);
36 Boolean& operator=(Boolean& b); 36 Boolean& operator=(Boolean& b);
37 Boolean(bool b); 37 Boolean(bool b);
38 virtual ~Boolean(); 38 virtual ~Boolean();
39 39
40 Node* Clone(); 40 Node* Clone() const;
41 41
42 void SetValue(bool b); 42 void SetValue(bool b);
43 bool GetValue(); 43 bool GetValue() const;
44}; 44};
45 45
46}; 46};