diff options
Diffstat (limited to 'src/ParserCmdline.h')
-rw-r--r-- | src/ParserCmdline.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ParserCmdline.h b/src/ParserCmdline.h index fc12490..1c4545b 100644 --- a/src/ParserCmdline.h +++ b/src/ParserCmdline.h @@ -28,9 +28,17 @@ #ifndef _PARSER_CMDLINE #define _PARSER_CMDLINE +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <vector> #include "MuxElements.h" +#define ENABLE_CMDLINE_OPTIONS 0 + +#if ENABLE_CMDLINE_OPTIONS + bool parse_cmdline(char **argv, int argc, std::vector<dabOutput*> &outputs, @@ -42,3 +50,5 @@ bool parse_cmdline(char **argv, ); #endif + +#endif |