summaryrefslogtreecommitdiffstats
path: root/trunk/addon/doxywizard/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/addon/doxywizard/config.h')
-rw-r--r--trunk/addon/doxywizard/config.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/trunk/addon/doxywizard/config.h b/trunk/addon/doxywizard/config.h
new file mode 100644
index 0000000..d40f1f4
--- /dev/null
+++ b/trunk/addon/doxywizard/config.h
@@ -0,0 +1,18 @@
+#ifndef CONFIG_H
+#define CONFIG_H
+
+#include <QHash>
+#include <QString>
+
+class Input;
+class QTextStream;
+class QTextCodec;
+
+bool parseConfig(
+ const QString &fileName,
+ const QHash<QString,Input *> &options
+ );
+
+void writeStringValue(QTextStream &t,QTextCodec *codec,const QString &s);
+
+#endif