1 #ifndef INCLUDE__Settings_hxx
2 #define INCLUDE__Settings_hxx
5 #include "log4cxx/logger.h"
7 class Settings : public QSettings {
9 QDir* getRuntimeDirectory() const {return runtimeDirectory;}
10 static Settings* get() {return instance;}
14 static Settings* instance;
15 log4cxx::LoggerPtr logger;
16 QDir* runtimeDirectory;
18 friend int main(int argc, char** argv);
21 #endif /* INCLUDE__Settings_hxx */