26 lines
323 B
C++
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
|