From 5754efa4b1b80f91b17c0ea1130de020ffb1b449 Mon Sep 17 00:00:00 2001 From: Rico Antonio Felix Date: Tue, 23 Jun 2015 21:41:38 -0400 Subject: Added API documentation for Constant(const char*, const char*, size_t) --- include/constant.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/include/constant.h b/include/constant.h index 1f911c8..a3a059f 100644 --- a/include/constant.h +++ b/include/constant.h @@ -77,6 +77,15 @@ public: * @param value Constant's value */ Constant(const char *name, const char *value); + + /** + * Constructor to create a constant for a string literal + * specifying the length of the string + * + * @param name Constant's name + * @param value Constant's value + * @param size Length of the string value + */ Constant(const char *name, const char *value, size_t size); Constant(const char *name, const std::string &value); -- cgit v1.2.3