qtest.h 224 B

12345678910111213141516171819
  1. #ifndef QTEST_H
  2. #define QTEST_H
  3. #include <QObject>
  4. class qtest : public QObject
  5. {
  6. Q_OBJECT
  7. public:
  8. explicit qtest(QObject *parent = 0);
  9. signals:
  10. public slots:
  11. };
  12. #endif // QTEST_H