From d7b6472ba9bc8da3cc77b0c2db7e5e94876fe28b Mon Sep 17 00:00:00 2001 From: Rico Antonio Felix Date: Tue, 23 Jun 2015 21:26:11 -0400 Subject: Added API documentation for Constant(const char*, bool) --- include/constant.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/constant.h b/include/constant.h index 4a120f4..5353bf4 100644 --- a/include/constant.h +++ b/include/constant.h @@ -36,6 +36,13 @@ public: * @param size Size of the value (in case of a string) */ Constant(const char *name, std::nullptr_t value = nullptr); + + /** + * Constructor to create a constant for a boolean value + * + * @param name Constant's name + * @param value Constant's value + */ Constant(const char *name, bool value); Constant(const char *name, int32_t value); Constant(const char *name, int64_t value); -- cgit v1.2.3