main.cpp.in 202 B

123456789101112131415161718
  1. #include <QObject>
  2. class SomeObject : public QObject
  3. {
  4. Q_OBJECT
  5. public:
  6. explicit SomeObject(QObject *parent = 0)
  7. : QObject(parent)
  8. {
  9. }
  10. };
  11. int main(int argc, char **argv)
  12. {
  13. return 0;
  14. }