summaryrefslogtreecommitdiff
path: root/seentl.h
blob: 1bfad7315177195db33e619f19e8935c7acce478 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef SEENTL_H
#define SEENTL_H

#include <QtGui/QMainWindow>
#include "utfscriptmodel.h"

namespace Ui
{
    class SEENTLClass;
}

class SEENTL : public QMainWindow
{
    Q_OBJECT

public:
    SEENTL(QWidget *parent = 0);
    ~SEENTL();

public slots:
    void openScript();

private:
    Ui::SEENTLClass *ui;
    utfScriptModel script;

};

#endif // SEENTL_H