15 lines
180 B
C++
15 lines
180 B
C++
#ifndef VIEWER_H
|
|
#define VIEWER_H
|
|
|
|
#include <QWidget>
|
|
|
|
class Viewer : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Viewer(QWidget *parent = 0);
|
|
~Viewer();
|
|
};
|
|
|
|
#endif // VIEWER_H
|