ToastFreeware
/
toast
/
confclerk.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
forgotten appsettings files
[toast/confclerk.git]
/
src
/
app
/
appsettings.h
1
2
#ifndef APPSETTINGS_H
3
#define APPSETTINGS_H
4
5
#include <QString>
6
#include <QSettings>
7
8
class AppSettings
9
{
10
private:
11
AppSettings();
12
static QSettings mSettings;
13
14
public:
15
static int confId(); // conference Id
16
static void setConfId(int aConfId);
17
};
18
19
#endif /* APPSETTINGS_H */
20