Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef HEADER_H
- #define HEADER_H
- #include <QObject>
- class MyClass : public QObject {
- Q_OBJECT
- public:
- explicit MyClass(QObject* parent = nullptr);
- //members
- signals:
- //signals
- void response();
- public slots:
- //public slots
- void buttonClicked();
- };
- #endif
Add Comment
Please, Sign In to add comment