blob: 45c5af681ca199ca6f948ca5a9c6b8b9519167f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <qobject.h>
class AnotherObject : public QObject
{
Q_OBJECT
public:
AnotherObject() {}
};
AnotherObject* createAnotherObject()
{
return new AnotherObject();
}
#include "anotherobject.moc"
|