summaryrefslogtreecommitdiffstats
path: root/src/config.h
diff options
context:
space:
mode:
authorSimon Rettberg2019-06-03 11:30:36 +0200
committerSimon Rettberg2019-06-03 11:30:36 +0200
commitef922f2e099cf8556828f9559a154eedefd945f4 (patch)
treeffeff627023f6dc12a9b1562ec0ffaf6d3ce58e6 /src/config.h
parentFix .conf file reading, add messages/warnings (diff)
downloadvmchooser2-ef922f2e099cf8556828f9559a154eedefd945f4.tar.gz
vmchooser2-ef922f2e099cf8556828f9559a154eedefd945f4.tar.xz
vmchooser2-ef922f2e099cf8556828f9559a154eedefd945f4.zip
Add --dump-config
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h
index 872836d..f1a20ea 100644
--- a/src/config.h
+++ b/src/config.h
@@ -2,7 +2,6 @@
#define CONFIG_H
#include <QCoreApplication>
-#include <QList>
struct ConfigOption;
@@ -34,10 +33,12 @@ public:
static const ConfigOption* const TEMPLATE_MODE;
static const ConfigOption* const AUTOSTART_UUID;
static const ConfigOption* const NO_VTX;
+ static const ConfigOption* const DUMP_CONFIG;
static bool init(const QCoreApplication& app, const ConfigOption* const configFile);
static QString get(const ConfigOption* const option);
static bool isSet(const ConfigOption* const option);
+ static void dump();
private:
Config() {}