You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
384 B
23 lines
384 B
7 years ago
|
#ifndef QTMVVM_SETTINGSVIEWMODEL_P_H
|
||
|
#define QTMVVM_SETTINGSVIEWMODEL_P_H
|
||
|
|
||
7 years ago
|
#include "qtmvvmcore_global.h"
|
||
7 years ago
|
#include "settingsviewmodel.h"
|
||
|
|
||
|
namespace QtMvvm {
|
||
|
|
||
|
class SettingsViewModelPrivate
|
||
|
{
|
||
|
public:
|
||
7 years ago
|
ISettingsSetupLoader *setupLoader = nullptr;
|
||
|
|
||
|
QSettings *settings = nullptr;
|
||
|
QString setupFile;
|
||
|
|
||
7 years ago
|
SettingsElements::Setup currentSetup;
|
||
7 years ago
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // QTMVVM_SETTINGSVIEWMODEL_P_H
|