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.
24 lines
562 B
24 lines
562 B
#ifndef QTMVVM_NETWORKEXCHANGEVIEWMODEL_P_H
|
|
#define QTMVVM_NETWORKEXCHANGEVIEWMODEL_P_H
|
|
|
|
#include "qtmvvmdatasynccore_global.h"
|
|
#include "networkexchangeviewmodel.h"
|
|
|
|
namespace QtMvvm {
|
|
|
|
class NetworkExchangeViewModelPrivate
|
|
{
|
|
public:
|
|
static const quint32 ExportRequestCode = 0xb300;
|
|
|
|
NetworkExchangeViewModelPrivate(NetworkExchangeViewModel *q_ptr);
|
|
|
|
QtDataSync::UserExchangeManager *exchangeManager;
|
|
ExchangeDevicesModel *deviceModel;
|
|
quint16 port;
|
|
QHash<quint32, QtDataSync::UserInfo> activeExports;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // QTMVVM_NETWORKEXCHANGEVIEWMODEL_P_H
|
|
|