2572
|
1 |
#ifndef EDITOR_H
|
|
2 |
#define EDITOR_H
|
|
3 |
|
|
4 |
#include <QtGui/QMainWindow>
|
|
5 |
|
|
6 |
namespace Ui
|
|
7 |
{
|
|
8 |
class editor;
|
|
9 |
}
|
|
10 |
|
|
11 |
class editor : public QMainWindow
|
|
12 |
{
|
|
13 |
Q_OBJECT
|
|
14 |
|
|
15 |
public:
|
|
16 |
editor(QWidget *parent = 0);
|
|
17 |
~editor();
|
|
18 |
|
|
19 |
private:
|
|
20 |
Ui::editor *ui;
|
|
21 |
};
|
|
22 |
|
|
23 |
#endif // EDITOR_H
|