summaryrefslogtreecommitdiffstats
path: root/tools/qscxmlc/decl.t
blob: 648476df00395e5a21a3c68104809f29db04b0b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class ${classname}: public QScxmlStateMachine
{
    /* qmake ignore Q_OBJECT */
    Q_OBJECT
${properties}

public:
    Q_INVOKABLE ${classname}(QObject *parent = 0);
    ~${classname}();

private:
    struct Data;
    friend struct Data;
    struct Data *data;
};