summaryrefslogtreecommitdiff
path: root/src/options/options_handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/options/options_handler.h')
-rw-r--r--src/options/options_handler.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/options/options_handler.h b/src/options/options_handler.h
index 6f5016c6c..a70a46a4a 100644
--- a/src/options/options_handler.h
+++ b/src/options/options_handler.h
@@ -22,6 +22,7 @@
#include <sstream>
#include <string>
+#include "options/base_options.h"
#include "options/bv_options.h"
#include "options/decision_options.h"
#include "options/language.h"
@@ -83,9 +84,9 @@ class OptionsHandler
/** Apply verbosity to the different output channels */
void setVerbosity(const std::string& flag, int value);
/** Decrease verbosity and call setVerbosity */
- void decreaseVerbosity(const std::string& flag);
+ void decreaseVerbosity(const std::string& flag, bool value);
/** Increase verbosity and call setVerbosity */
- void increaseVerbosity(const std::string& flag);
+ void increaseVerbosity(const std::string& flag, bool value);
/** If statistics are disabled, disable statistics sub-options */
void setStats(const std::string& flag, bool value);
/** If statistics sub-option is disabled, enable statistics */
@@ -95,7 +96,7 @@ class OptionsHandler
/** Enable a particular debug tag */
void enableDebugTag(const std::string& flag, const std::string& optarg);
/** Enable a particular output tag */
- void enableOutputTag(const std::string& flag, const std::string& optarg);
+ void enableOutputTag(const std::string& flag, OutputTag optarg);
/** Apply print success flag to the different output channels */
void setPrintSuccess(const std::string& flag, bool value);
/** Pass the resource weight specification to the resource manager */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback