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

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

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