cmake/Tests/Qt4And5Automoc/main.cpp.in
2014-08-03 19:52:23 +02:00

19 lines
202 B
C++

#include <QObject>
class SomeObject : public QObject
{
Q_OBJECT
public:
explicit SomeObject(QObject *parent = 0)
: QObject(parent)
{
}
};
int main(int argc, char **argv)
{
return 0;
}