blob: 45c5af681ca199ca6f948ca5a9c6b8b9519167f0 [file] [log] [blame]
#include <qobject.h>
class AnotherObject : public QObject
{
Q_OBJECT
public:
AnotherObject() {}
};
AnotherObject* createAnotherObject()
{
return new AnotherObject();
}
#include "anotherobject.moc"