myobject.h 158 B

12345678910111213
  1. #ifndef MYOBJECT_H
  2. #define MYOBJECT_H
  3. #include <qobject.h>
  4. class MyObject : public QObject
  5. {
  6. Q_OBJECT
  7. public:
  8. MyObject(QObject* parent = 0);
  9. };
  10. #endif