summaryrefslogtreecommitdiffstats
path: root/include/plist/Real.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/plist/Real.h')
-rw-r--r--include/plist/Real.h6
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;
};
};