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
public :
Boolean(Node* parent = NULL);
Boolean(plist_t node, Node* parent = NULL);
- Boolean(Boolean& b);
+ Boolean(const Boolean& b);
Boolean& operator=(Boolean& b);
Boolean(bool b);
virtual ~Boolean();
- Node* Clone();
+ Node* Clone() const;
void SetValue(bool b);
- bool GetValue();
+ bool GetValue() const;
};
};