25 lines
221 B
C++
Raw Normal View History

2017-07-20 19:35:53 +02:00
#include "ObjA.hpp"
class SubObjA : public QObject
{
Q_OBJECT
public:
SubObjA() {}
~SubObjA() {}
Q_SLOT
void aSlot();
};
void SubObjA::aSlot()
{
}
void ObjA::go()
{
SubObjA subObj;
}
#include "ObjA.moc"