@@ -68,7 +68,7 @@ class Q_DATASYNC_EXPORT Setup
6868 // ! The serializer to be used to serialize and deserialize data to and from the store
6969 Q_PROPERTY (QJsonSerializer* serializer READ serializer WRITE setSerializer RESET resetSerializer)
7070 // ! An optional conflict resolver to handle merge conflicts
71- Q_PROPERTY (ConflictResolver* conflictResolver READ conflictResolver WRITE setConflictResolver RESET resetConflictResolver)
71+ Q_PROPERTY (QtDataSync:: ConflictResolver* conflictResolver READ conflictResolver WRITE setConflictResolver RESET resetConflictResolver)
7272 // ! An alternative handler for fatal errors
7373 Q_PROPERTY (FatalErrorHandler fatalErrorHandler READ fatalErrorHandler WRITE setFatalErrorHandler RESET resetFatalErrorHandler)
7474 // ! The size of the internal database cache, in bytes
@@ -80,7 +80,7 @@ class Q_DATASYNC_EXPORT Setup
8080 // ! The ssl configuration to be used to connect to the remote
8181 Q_PROPERTY (QSslConfiguration sslConfiguration READ sslConfiguration WRITE setSslConfiguration RESET resetSslConfiguration)
8282 // ! The configuration to be used to connect to the remote
83- Q_PROPERTY (RemoteConfig remoteConfiguration READ remoteConfiguration WRITE setRemoteConfiguration RESET resetRemoteConfiguration)
83+ Q_PROPERTY (QtDataSync:: RemoteConfig remoteConfiguration READ remoteConfiguration WRITE setRemoteConfiguration RESET resetRemoteConfiguration)
8484 // ! The name of the preferred keystore provider
8585 Q_PROPERTY (QString keyStoreProvider READ keyStoreProvider WRITE setKeyStoreProvider RESET resetKeyStoreProvider)
8686 // ! The algorithmic scheme to be used for new signature keys
@@ -192,6 +192,8 @@ class Q_DATASYNC_EXPORT Setup
192192 static KeyStore *loadKeystore (const QString &provider, QObject *parent = nullptr , const QString &setupName = DefaultSetup);
193193
194194 Setup ();
195+ Setup (Setup &&other) noexcept ;
196+ Setup &operator =(Setup &&other) noexcept ;
195197 ~Setup ();
196198
197199 // ! @readAcFn{Setup::localDir}
@@ -401,4 +403,5 @@ Q_DECL_CONSTEXPR inline int GB(intmax_t value)
401403}
402404
403405}
406+
404407#endif // QTDATASYNC_SETUP_H
0 commit comments