Touch_Grass

Untitled

May 18th, 2023
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 0.30 KB | None | 0 0
  1. #ifndef HEADER_H
  2. #define HEADER_H
  3.  
  4. #include <QObject>
  5.  
  6. class MyClass : public QObject {
  7.     Q_OBJECT
  8.  
  9. public:
  10.     explicit MyClass(QObject* parent = nullptr);
  11.     //members
  12. signals:
  13.     //signals
  14.     void response();
  15. public slots:
  16.     //public slots
  17.     void buttonClicked();
  18. };
  19.  
  20. #endif
  21.  
Add Comment
Please, Sign In to add comment