mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
0fc3a2704b
removed VEG photoservice Enabled group synchronisation between retroshare peers! test synchro between two rs peers worked. Added crude commenting facility to photoshare, much tuning to be done git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-gxs-b1@5602 b45a01b8-16f6-495d-af2f-9b41ad6348cc
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
|