2016-10-30 18:24:19 +01:00
|
|
|
#include "item.hpp"
|
2018-01-26 17:06:56 +01:00
|
|
|
// Include ui_view.h only in header
|
2016-10-30 18:24:19 +01:00
|
|
|
|
|
|
|
namespace aaa {
|
|
|
|
|
2018-01-26 17:06:56 +01:00
|
|
|
class MocLocal : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT;
|
|
|
|
|
|
|
|
public:
|
|
|
|
MocLocal() = default;
|
|
|
|
~MocLocal() = default;
|
|
|
|
};
|
|
|
|
|
2016-10-30 18:24:19 +01:00
|
|
|
void Item::go()
|
|
|
|
{
|
2018-01-26 17:06:56 +01:00
|
|
|
Ui_ViewAAA ui;
|
|
|
|
MocLocal obj;
|
2016-10-30 18:24:19 +01:00
|
|
|
}
|
|
|
|
}
|
2018-01-26 17:06:56 +01:00
|
|
|
|
|
|
|
#include "aaa/item.moc"
|