1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#ifndef CONTROLLER_HXX #define CONTROLLER_HXX #include <QObject> class Controller : public QObject { Q_OBJECT public: Controller(QObject* parent = nullptr); ~Controller(); public slots: void signUp(QString const& brand); void catalog(QString const& brand); signals: void pushed(); }; #endif