1
#ifndef VIEW_HPP
2
#define VIEW_HPP
3
4
#include "ui_maindialog.h"
5
6
class TView : public QDialog, Ui_Dialog {
7
Q_OBJECT
8
public:
9
TView (QWidget * parent = 0);
10
virtual ~TView ();
11
12
protected slots:
13
void up ();
14
void down ();
15
16
private:
17
};
18
19
#endif
20