mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
19 lines
227 B
C
19 lines
227 B
C
|
#ifndef VIEWER_H
|
||
|
#define VIEWER_H
|
||
|
|
||
|
#include <QGraphicsView>
|
||
|
|
||
|
class Viewer : public QGraphicsView
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
Viewer(QWidget *parent = 0);
|
||
|
virtual ~Viewer();
|
||
|
|
||
|
private:
|
||
|
virtual void resizeEvent(QResizeEvent*);
|
||
|
};
|
||
|
|
||
|
#endif
|