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
279 B
27 lines
279 B
8 years ago
|
#include "ObjD.hpp"
|
||
|
|
||
|
class SubObjD : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
SubObjD() {}
|
||
|
~SubObjD() {}
|
||
|
|
||
|
Q_SLOT
|
||
|
void aSlot();
|
||
|
};
|
||
|
|
||
|
void SubObjD::aSlot()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void ObjD::go()
|
||
|
{
|
||
|
SubObjD subObj;
|
||
|
}
|
||
|
|
||
|
#include "ObjD.moc"
|
||
|
// Header in subdirectory
|
||
|
#include "subA/moc_SubObjA.cpp"
|