summaryrefslogtreecommitdiff
path: root/project2/files/optionsSource.h
diff options
context:
space:
mode:
Diffstat (limited to 'project2/files/optionsSource.h')
-rw-r--r--project2/files/optionsSource.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/project2/files/optionsSource.h b/project2/files/optionsSource.h
new file mode 100644
index 0000000..722d7b9
--- /dev/null
+++ b/project2/files/optionsSource.h
@@ -0,0 +1,17 @@
+#ifndef FILES_OPTIONSSOURCE_H
+#define FILES_OPTIONSSOURCE_H
+
+#include "../common/optionsSource.h"
+
+class FileOptions : public OptionsSource {
+ public:
+ FileOptions();
+ FileOptions(const Glib::ustring & file);
+
+ void loadInto(const ConfigConsumer & consume) const;
+ private:
+ const Glib::ustring file;
+};
+
+#endif
+