blob: 764e159b6d7bd6a1c501ef50472d126f0ddc526b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// Copyright (C) 2017 Ford Motor Company
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QREMOTEOBJECTSETTINGSSTORE_H
#define QREMOTEOBJECTSETTINGSSTORE_H
#include <QtRemoteObjects/qremoteobjectnode.h>
QT_BEGIN_NAMESPACE
class QRemoteObjectSettingsStorePrivate;
class Q_REMOTEOBJECTS_EXPORT QRemoteObjectSettingsStore : public QRemoteObjectAbstractPersistedStore
{
Q_OBJECT
public:
QRemoteObjectSettingsStore(QObject *parent = nullptr);
~QRemoteObjectSettingsStore() override;
void saveProperties(const QString &repName, const QByteArray &repSig, const QVariantList &values) override;
QVariantList restoreProperties(const QString &repName, const QByteArray &repSig) override;
private:
Q_DECLARE_PRIVATE(QRemoteObjectSettingsStore)
};
QT_END_NAMESPACE
#endif // QREMOTEOBJECTSETTINGSSTORE_H
|