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.
25 lines
462 B
25 lines
462 B
7 years ago
|
#ifndef QTMVVM_NETWORKEXCHANGEWINDOW_P_H
|
||
|
#define QTMVVM_NETWORKEXCHANGEWINDOW_P_H
|
||
|
|
||
|
#include "qtmvvmdatasyncwidgets_global.h"
|
||
|
#include "networkexchangewindow.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class NetworkExchangeWindow;
|
||
|
}
|
||
|
|
||
|
namespace QtMvvm {
|
||
|
|
||
|
class NetworkExchangeWindowPrivate
|
||
|
{
|
||
|
public:
|
||
|
NetworkExchangeWindowPrivate(ViewModel *viewModel);
|
||
|
|
||
|
NetworkExchangeViewModel *viewModel;
|
||
|
QScopedPointer<Ui::NetworkExchangeWindow> ui;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // QTMVVM_NETWORKEXCHANGEWINDOW_P_H
|