diff options
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/common.h b/src/common.h index ca7e728..2c83dc6 100644 --- a/src/common.h +++ b/src/common.h @@ -24,13 +24,21 @@ #ifndef COMMON_H_ #define COMMON_H_ +// enable for debug output +//#define DEBUG + // include settings by configure #ifdef HAVE_CONFIG_H # include "config.h" #endif -//#define DEBUG + +#include <string> +#include <vector> +#include <sstream> + extern int verbose; +extern std::vector<std::string> split_string(const std::string &s, const char delimiter); #endif /* COMMON_H_ */ |