mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
26 lines
390 B
C
26 lines
390 B
C
|
#ifndef RSIMAGEBLOCKWIDGET_H
|
||
|
#define RSIMAGEBLOCKWIDGET_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
namespace Ui {
|
||
|
class RSImageBlockWidget;
|
||
|
}
|
||
|
|
||
|
class RSImageBlockWidget : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit RSImageBlockWidget(QWidget *parent = 0);
|
||
|
~RSImageBlockWidget();
|
||
|
|
||
|
signals:
|
||
|
void showImages();
|
||
|
|
||
|
private:
|
||
|
Ui::RSImageBlockWidget *ui;
|
||
|
};
|
||
|
|
||
|
#endif // RSIMAGEBLOCKWIDGET_H
|