example.h 125 B

123456789101112
  1. #ifndef EXAMPLE_H
  2. #define EXAMPLE_H
  3. #include <QObject>
  4. class Example : public QObject
  5. {
  6. Q_OBJECT
  7. Example();
  8. };
  9. #endif