mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-28 01:49:23 -05:00
18 lines
186 B
C++
18 lines
186 B
C++
#include "item.hpp"
|
|
|
|
class MocLocal : public QObject
|
|
{
|
|
Q_OBJECT;
|
|
|
|
public:
|
|
MocLocal() = default;
|
|
~MocLocal() = default;
|
|
};
|
|
|
|
void Item::go()
|
|
{
|
|
MocLocal obj;
|
|
}
|
|
|
|
#include "item.moc"
|