From a3688042d56e1de696faaab8f2c5df206d8d1411 Mon Sep 17 00:00:00 2001 From: Rico Antonio Felix Date: Tue, 23 Jun 2015 21:29:44 -0400 Subject: Added API documentation for Constant(const char*, int32_t) --- include/constant.h | 7 +++++++ 1 file changed, 7 insertions(+) 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); -- cgit v1.2.3