summaryrefslogtreecommitdiff
path: root/include/constant.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/constant.h')
-rw-r--r--include/constant.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/constant.h b/include/constant.h
index 6caaabf..d3b5749 100644
--- a/include/constant.h
+++ b/include/constant.h
@@ -60,6 +60,14 @@ public:
* @param value Constant's value
*/
Constant(const char *name, int64_t value);
+
+ /**
+ * Constructor to create a constant for a double precision
+ * floating point number
+ *
+ * @param name Constant's name
+ * @param value Constant's value
+ */
Constant(const char *name, double value);
Constant(const char *name, const char *value);
Constant(const char *name, const char *value, size_t size);