blob: d6a11464a1321436db1a6676077aeaf13d91a149 (
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
30
31
32
33
34
35
36
37
38
39
40
|
/****************************************************************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
** Contact: Qt Software Information (qt-info@nokia.com)
**
** This file is part of the $MODULE$ of the Qt Toolkit.
**
** $TROLLTECH_DUAL_LICENSE$
**
****************************************************************************/
#ifndef QSTATEFINISHEDEVENT_H
#define QSTATEFINISHEDEVENT_H
#include <QtCore/qcoreevent.h>
QT_BEGIN_HEADER
QT_BEGIN_NAMESPACE
QT_MODULE(Core)
class QState;
class Q_CORE_EXPORT QStateFinishedEvent : public QEvent
{
public:
QStateFinishedEvent(QState *state);
~QStateFinishedEvent();
QState *state() const;
private:
QState *m_state;
void *d;
};
QT_END_NAMESPACE
#endif
|