qtmobility/src/sensors/qsensorpluginloader_p.h
changeset 4 90517678cc4f
parent 1 2b40d63a9c3d
child 11 06b8e2af4411
--- a/qtmobility/src/sensors/qsensorpluginloader_p.h	Fri Apr 16 15:51:22 2010 +0300
+++ b/qtmobility/src/sensors/qsensorpluginloader_p.h	Mon May 03 13:18:40 2010 +0300
@@ -57,6 +57,7 @@
 #include <QObject>
 #include <QtCore/qstring.h>
 #include <QtCore/qlist.h>
+#include <QtCore/qpluginloader.h>
 
 QTM_BEGIN_NAMESPACE
 
@@ -66,6 +67,7 @@
 {
 public:
     QSensorPluginLoader(const char *iid, const QString &suffix = QString());
+    ~QSensorPluginLoader();
 
     QList<QSensorPluginInterface*> plugins() const { return m_plugins; }
 
@@ -75,6 +77,7 @@
     QByteArray  m_iid;
     QString     m_location;
     QList<QSensorPluginInterface*> m_plugins;
+    QList<QPluginLoader *> m_loaders;
 };
 
 QTM_END_NAMESPACE