diff options
author | Roland Wolf <ext-roland.wolf@nokia.com> | 2010-09-06 14:23:27 (GMT) |
---|---|---|
committer | Roland Wolf <ext-roland.wolf@nokia.com> | 2010-09-08 10:26:32 (GMT) |
commit | 461c27265a812ccadb707151afbf22a1874cce04 (patch) | |
tree | dacbd9e0558e3ede94698b072b00dd795a47d3de /examples/tutorials/modelview/3_changingmodel | |
parent | 3d247e0ae09bcd1b75f92a587ab5b28569a3f0f6 (diff) | |
download | Qt-461c27265a812ccadb707151afbf22a1874cce04.zip Qt-461c27265a812ccadb707151afbf22a1874cce04.tar.gz Qt-461c27265a812ccadb707151afbf22a1874cce04.tar.bz2 |
fix for compilation with namespace
Diffstat (limited to 'examples/tutorials/modelview/3_changingmodel')
-rwxr-xr-x | examples/tutorials/modelview/3_changingmodel/mymodel.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/tutorials/modelview/3_changingmodel/mymodel.h b/examples/tutorials/modelview/3_changingmodel/mymodel.h index 87c3dba..91e3cb9 100755 --- a/examples/tutorials/modelview/3_changingmodel/mymodel.h +++ b/examples/tutorials/modelview/3_changingmodel/mymodel.h @@ -42,7 +42,11 @@ #define MYMODEL_H #include <QAbstractTableModel> -#include <QTimer> + +QT_BEGIN_NAMESPACE // QT_BEGIN_NAMESPACE / QT_END_NAMESPACE are not needed in Qt user code +class QTimer; // forward declaration +QT_END_NAMESPACE + class MyModel : public QAbstractTableModel { |