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.
27 lines
267 B
27 lines
267 B
8 years ago
|
#include "ObjC.hpp"
|
||
|
|
||
|
class SubObjC : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
SubObjC() {}
|
||
|
~SubObjC() {}
|
||
|
|
||
|
Q_SLOT
|
||
|
void aSlot();
|
||
|
};
|
||
|
|
||
|
void SubObjC::aSlot()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void ObjC::go()
|
||
|
{
|
||
|
SubObjC subObj;
|
||
|
}
|
||
|
|
||
|
#include "ObjC.moc"
|
||
|
// Not the own header
|
||
|
#include "moc_ObjD.cpp"
|