23 lines
376 B
C++
Executable file
23 lines
376 B
C++
Executable file
#ifndef PICTUREDIALOG_H
|
|
#define PICTUREDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class PictureDialog;
|
|
}
|
|
|
|
class PictureDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PictureDialog(QWidget *parent = 0);
|
|
void setSnapmaticPicture(QPixmap pixmap);
|
|
~PictureDialog();
|
|
|
|
private:
|
|
Ui::PictureDialog *ui;
|
|
};
|
|
|
|
#endif // PICTUREDIALOG_H
|