mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
24 lines
390 B
C
24 lines
390 B
C
|
#ifndef ADDCOMMENTDIALOG_H
|
||
|
#define ADDCOMMENTDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class AddCommentDialog;
|
||
|
}
|
||
|
|
||
|
class AddCommentDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit AddCommentDialog(QWidget *parent = 0);
|
||
|
~AddCommentDialog();
|
||
|
QString getComment() const;
|
||
|
|
||
|
private:
|
||
|
Ui::AddCommentDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // ADDCOMMENTDIALOG_H
|