summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRico Antonio Felix <ricoantoniofelix@yahoo.com>2015-06-23 21:29:44 -0400
committerRico Antonio Felix <ricoantoniofelix@yahoo.com>2015-06-23 21:29:44 -0400
commita3688042d56e1de696faaab8f2c5df206d8d1411 (patch)
treefb479899e1ffa88b4a87f5b314368d0884444b60
parentd7b6472ba9bc8da3cc77b0c2db7e5e94876fe28b (diff)
Added API documentation for Constant(const char*, int32_t)
-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);