cutter/src/dialogs/CommentsDialog.h

31 lines
431 B
C
Raw Normal View History

#ifndef COMMENTSDIALOG_H
#define COMMENTSDIALOG_H
#include <QDialog>
2017-04-09 19:55:06 +00:00
namespace Ui
{
class CommentsDialog;
}
class CommentsDialog : public QDialog
{
Q_OBJECT
public:
explicit CommentsDialog(QWidget *parent = 0);
~CommentsDialog();
QString getComment();
private slots:
void on_buttonBox_accepted();
void on_buttonBox_rejected();
private:
Ui::CommentsDialog *ui;
};
#endif // COMMENTSDIALOG_H