#ifndef HOMEPAGEDLG_H
#define HOMEPAGEDLG_H

#include <QWidget>

namespace Ui {
class HomePageDlg;
}

class HomePageDlg : public QWidget
{
    Q_OBJECT

public:
    explicit HomePageDlg(QWidget *parent = nullptr);
    ~HomePageDlg();
    QPixmap m_pixmap;

private:
    Ui::HomePageDlg *ui;
};

#endif // HOMEPAGEDLG_H