aboutsummaryrefslogtreecommitdiffstats
path: root/src/common.h
diff options
context:
space:
mode:
authorStefan Pöschel <github@basicmaster.de>2017-02-11 00:41:50 +0100
committerStefan Pöschel <github@basicmaster.de>2017-02-11 00:41:50 +0100
commitb18c8ea7c49f0e33f6fa5bd8ea467562cce260f1 (patch)
treef6e294e36f67e1214781cd5f6aef4906285a3263 /src/common.h
parent19a6f1f7ab63e82264e5bbb647bca3573cc673dc (diff)
downloadODR-PadEnc-b18c8ea7c49f0e33f6fa5bd8ea467562cce260f1.tar.gz
ODR-PadEnc-b18c8ea7c49f0e33f6fa5bd8ea467562cce260f1.tar.bz2
ODR-PadEnc-b18c8ea7c49f0e33f6fa5bd8ea467562cce260f1.zip
Move common code parts
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h10
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_ */