blob: 60a80d5963dff95004fa0ceafefdd0ca371b9267 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include "services/config.h"
CFG_DEFINE(Core)
static const QString DB_FILE_NAME = QStringLiteral("settings3");
static QString MASTER_CONFIG_FILE = QString();
Config::~Config()
{
}
void Config::setMasterConfigFile(const QString &path)
{
MASTER_CONFIG_FILE = path;
}
QString Config::getMasterConfigFile()
{
return MASTER_CONFIG_FILE;
}
|