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
462 B
24 lines
462 B
#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
|
|
|