summaryrefslogtreecommitdiffstats
path: root/src/CommandLineOptions.h
diff options
context:
space:
mode:
authorJonathan Bauer2011-03-05 16:09:54 +0100
committerJonathan Bauer2011-03-05 16:09:54 +0100
commitcf9609c876318f0c27914a723af915a9acfdbcc3 (patch)
treefcf2b5477835528b00c7ba3cacd7cd240ae57e86 /src/CommandLineOptions.h
parentwebkitTest.html: resetting of progress bar when download finishes. (diff)
downloadfbgui-cf9609c876318f0c27914a723af915a9acfdbcc3.tar.gz
fbgui-cf9609c876318f0c27914a723af915a9acfdbcc3.tar.xz
fbgui-cf9609c876318f0c27914a723af915a9acfdbcc3.zip
Command line options parsing moved to its own class, in preparation for Settings
Diffstat (limited to 'src/CommandLineOptions.h')
-rw-r--r--src/CommandLineOptions.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/CommandLineOptions.h b/src/CommandLineOptions.h
new file mode 100644
index 0000000..a8b15d4
--- /dev/null
+++ b/src/CommandLineOptions.h
@@ -0,0 +1,16 @@
+#ifndef COMMANDLINEOPTIONS_H
+#define COMMANDLINEOPTIONS_H
+
+#include <QMap>
+
+class CommandLineOptions {
+ public:
+ CommandLineOptions(int argc, char * const argv[]);
+ ~CommandLineOptions();
+ private:
+ QMap<QString, QString> options;
+};
+
+
+
+#endif // COMMANDLINEOPTIONS_H