diff options
author | Morten Engvoldsen <morten.engvoldsen@nokia.com> | 2009-11-09 12:02:51 (GMT) |
---|---|---|
committer | Morten Engvoldsen <morten.engvoldsen@nokia.com> | 2009-11-09 12:02:51 (GMT) |
commit | a7577f8c3ae3a025384d8d19fdf3575ef141a70b (patch) | |
tree | 9c2f7c74f7aabedcef46e435aa8ada3f3708fb10 /examples/network/googlesuggest/googlesuggest.h | |
parent | d9c5a6828e0f5c846aeef214f2fe0a9de48072dc (diff) | |
download | Qt-a7577f8c3ae3a025384d8d19fdf3575ef141a70b.zip Qt-a7577f8c3ae3a025384d8d19fdf3575ef141a70b.tar.gz Qt-a7577f8c3ae3a025384d8d19fdf3575ef141a70b.tar.bz2 |
˙ūd
Diffstat (limited to 'examples/network/googlesuggest/googlesuggest.h')
-rw-r--r-- | examples/network/googlesuggest/googlesuggest.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/network/googlesuggest/googlesuggest.h b/examples/network/googlesuggest/googlesuggest.h index 2a3c878..c33df36 100644 --- a/examples/network/googlesuggest/googlesuggest.h +++ b/examples/network/googlesuggest/googlesuggest.h @@ -42,8 +42,9 @@ #ifndef GOOGLESUGGEST_H #define GOOGLESUGGEST_H +#include <QtGui> +#include <QtNetwork> #include <QObject> -#include <QNetworkAccessManager> QT_BEGIN_NAMESPACE class QLineEdit; @@ -52,6 +53,7 @@ class QTimer; class QTreeWidget; QT_END_NAMESPACE +//! [1] class GSuggestCompletion : public QObject { Q_OBJECT @@ -75,6 +77,6 @@ private: QTimer *timer; QNetworkAccessManager networkManager; }; - +//! [1] #endif // GOOGLESUGGEST_H |