#ifndef FRAME_H #define FRAME_H #include namespace Ui { class Frame; } class Frame : public QFrame { Q_OBJECT public: explicit Frame(QWidget *parent = nullptr); ~Frame(); private: Ui::Frame *ui; }; #endif // FRAME_H