2016-04-13 19:36:39 +03:00
|
|
|
#include "item.hpp"
|
|
|
|
|
|
|
|
namespace ccc {
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void Item::go()
|
2016-04-13 19:36:39 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
class MocTest : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT;
|
|
|
|
Q_SLOT
|
2016-05-16 17:34:04 +03:00
|
|
|
void go();
|
2016-04-13 19:36:39 +03:00
|
|
|
};
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void MocTest::go()
|
2016-04-13 19:36:39 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Include own moc files
|
|
|
|
#include "item.moc"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "moc_item.cpp"
|