Files
newspark110/device/ui/imagebox.h
Chenwenxuan edac2715f0 init
2024-03-06 14:54:30 +08:00

26 lines
323 B
C++

#ifndef IMAGEBOX_H
#define IMAGEBOX_H
#include <QWidget>
namespace Ui {
class ImageBox;
}
class ImageBox : public QWidget
{
Q_OBJECT
public:
explicit ImageBox(QWidget *parent = nullptr);
~ImageBox();
private slots:
void on_pushButton_clicked();
private:
Ui::ImageBox *ui;
};
#endif // IMAGEBOX_H