summaryrefslogtreecommitdiff
path: root/src/util/configuration.h
diff options
context:
space:
mode:
authorFrançois Bobot <francois@bobot.eu>2012-05-04 14:28:08 +0000
committerFrançois Bobot <francois@bobot.eu>2012-05-04 14:28:08 +0000
commit48597056ca70a0e80c7ad097b728c274931cebc4 (patch)
tree63e0c5fa30ce1575e781bdc35b0432aa959de211 /src/util/configuration.h
parent66c8c03e12d42d4b6095a05229567b83e6f175e1 (diff)
options: fail if the debug or trace tag specified doesn't exist (-d -t)
Diffstat (limited to 'src/util/configuration.h')
-rw-r--r--src/util/configuration.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/util/configuration.h b/src/util/configuration.h
index 1bd48999e..b1ef7154d 100644
--- a/src/util/configuration.h
+++ b/src/util/configuration.h
@@ -89,11 +89,19 @@ public:
static bool isBuiltWithTlsSupport();
+ /* Return the number of debug tags */
static unsigned getNumDebugTags();
+ /* Return a sorted array of the debug tags name */
static char const* const* getDebugTags();
+ /* Test if the given argument is a known debug tag name */
+ static bool isDebugTag(char const *);
+ /* Return the number of trace tags */
static unsigned getNumTraceTags();
+ /* Return a sorted array of the trace tags name */
static char const* const* getTraceTags();
+ /* Test if the given argument is a known trace tag name */
+ static bool isTraceTag(char const *);
static bool isSubversionBuild();
static const char* getSubversionBranchName();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback