Updated the git clone command.
[emufront] / src / db / dbconfig.h
1 #ifndef DBCONFIG_H
2 #define DBCONFIG_H
3
4 #include <QObject>
5
6 class DbConfig : public QObject
7 {
8     Q_OBJECT
9 public:
10     DbConfig(QObject *parent = 0);
11     static QString getTmpDir();
12     static bool setTmpDir(QString);
13     enum {
14         DbConfig_TmpDirPath = 0
15     };
16 };
17
18 #endif // DBCONFIG_H