summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/constant.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/constant.h b/include/constant.h
index b2e3d21..6caaabf 100644
--- a/include/constant.h
+++ b/include/constant.h
@@ -52,6 +52,13 @@ public:
* @param value Constant's value
*/
Constant(const char *name, int32_t value);
+
+ /**
+ * Constructor to create a constant for a 64-bit integer
+ *
+ * @param name Constant's name
+ * @param value Constant's value
+ */
Constant(const char *name, int64_t value);
Constant(const char *name, double value);
Constant(const char *name, const char *value);