16 lines
206 B
C++
Raw Normal View History

2020-10-15 20:05:27 +02:00
#include <qobject.h>
class AnotherObject : public QObject
{
Q_OBJECT
public:
AnotherObject() {}
};
AnotherObject* createAnotherObject()
{
return new AnotherObject();
}
#include "anotherobject.moc"