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
32public : 32public :
33 Real(Node* parent = NULL); 33 Real(Node* parent = NULL);
34 Real(plist_t node, Node* parent = NULL); 34 Real(plist_t node, Node* parent = NULL);
35 Real(Real& d); 35 Real(const Real& d);
36 Real& operator=(Real& d); 36 Real& operator=(Real& d);
37 Real(double d); 37 Real(double d);
38 virtual ~Real(); 38 virtual ~Real();
39 39
40 Node* Clone(); 40 Node* Clone() const;
41 41
42 void SetValue(double d); 42 void SetValue(double d);
43 double GetValue(); 43 double GetValue() const;
44}; 44};
45 45
46}; 46};