summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRico Antonio Felix <ricoantoniofelix@yahoo.com>2015-06-23 21:30:35 -0400
committerRico Antonio Felix <ricoantoniofelix@yahoo.com>2015-06-23 21:30:35 -0400
commitf06a841708b0de1fa30c6dc5bed5f19a9ec5548a (patch)
tree707f181ad69115b5e8ec10f39f64ac8be4101518
parenta3688042d56e1de696faaab8f2c5df206d8d1411 (diff)
Added API documentation for Constant(const char*, int64_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 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);