diff options
author | Aaron Burghardt | 2014-08-15 21:59:01 -0400 |
---|---|---|
committer | Nikias Bassen | 2014-09-20 00:10:46 +0200 |
commit | ccd6f05fe1e6cd5a1611b0df78974fa39869013d (patch) | |
tree | 3c9e2c431d85cfb683de1724b121819aa16d29aa /include/plist/Real.h | |
parent | bc147d80b5a608b8a0478041e5198093ecd767b8 (diff) | |
download | libplist-ccd6f05fe1e6cd5a1611b0df78974fa39869013d.tar.gz libplist-ccd6f05fe1e6cd5a1611b0df78974fa39869013d.tar.bz2 |
Change Clone() to be const, which required constructors with const references and a const GetValue().
Diffstat (limited to 'include/plist/Real.h')
-rw-r--r-- | include/plist/Real.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/plist/Real.h b/include/plist/Real.h index a89eb4a..c2d55f8 100644 --- a/include/plist/Real.h +++ b/include/plist/Real.h @@ -32,15 +32,15 @@ class Real : public Node public : Real(Node* parent = NULL); Real(plist_t node, Node* parent = NULL); - Real(Real& d); + Real(const Real& d); Real& operator=(Real& d); Real(double d); virtual ~Real(); - Node* Clone(); + Node* Clone() const; void SetValue(double d); - double GetValue(); + double GetValue() const; }; }; |