summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRico Antonio Felix <ricoantoniofelix@yahoo.com>2015-06-23 21:32:11 -0400
committerRico Antonio Felix <ricoantoniofelix@yahoo.com>2015-06-23 21:32:11 -0400
commitd0ca7090df5955a70243b952d76bcad28856dbba (patch)
tree3945efcbd0bddaf80336d411d8ff04a9d9175130
parentf06a841708b0de1fa30c6dc5bed5f19a9ec5548a (diff)
Added API documentation for Constant(const char*, double)
-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);