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.
21 lines
331 B
21 lines
331 B
7 years ago
|
#ifndef QTMVVM_ACCOUNTMODEL_P_H
|
||
|
#define QTMVVM_ACCOUNTMODEL_P_H
|
||
|
|
||
|
#include "qtmvvmdatasynccore_global.h"
|
||
|
#include "accountmodel.h"
|
||
|
|
||
|
namespace QtMvvm {
|
||
|
|
||
|
class AccountModelPrivate
|
||
|
{
|
||
|
public:
|
||
|
AccountModelPrivate();
|
||
|
|
||
|
QtDataSync::AccountManager *manager;
|
||
|
QList<QtDataSync::DeviceInfo> devices;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // QTMVVM_ACCOUNTMODEL_P_H
|