1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#include "item.hpp" namespace bbb { namespace aaa { class MocLocal : public QObject { Q_OBJECT; public: MocLocal() = default; ~MocLocal() = default; }; void Item::go() { MocLocal obj; } } } #include "bbb/aaa/item.moc"