You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
247 B

#include "SubObjC.hpp"
namespace subC {
class SubObjC : public QObject
{
Q_OBJECT
public:
SubObjC() {}
~SubObjC() {}
Q_SLOT
void aSlot();
};
void SubObjC::aSlot()
{
}
void ObjC::go()
{
SubObjC subObj;
}
}
#include "SubObjC.moc"