cutter/src/dialogs/commentsdialog.h
Hugo Teso ca821e1064 First code commit
First commit with the app code
2017-03-29 12:18:37 +02:00

30 lines
427 B
C++

#ifndef COMMENTSDIALOG_H
#define COMMENTSDIALOG_H
#include <QDialog>
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