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