Migration of QtMvvm from github
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.
 
 
 
 
 

30 lines
638 B

#ifndef TESTBACKEND_H
#define TESTBACKEND_H
#include <QtCore/QVariantHash>
#include <QtMvvmCore/ISettingsAccessor>
class TestBackend : public QtMvvm::ISettingsAccessor
{
Q_OBJECT
public:
explicit TestBackend(QObject *parent = nullptr);
// ISettingsAccessor interface
public:
bool contains(const QString &key) const override;
QVariant load(const QString &key, const QVariant &defaultValue) const override;
void save(const QString &key, const QVariant &value) override;
void remove(const QString &key) override;
public slots:
void sync() override;
public:
QVariantHash _data;
};
#define SOME_EXPORT
#endif // TESTBACKEND_H