6 #include <QMessageManager>
7 #include <QMessageService>
8 #include "camshooter.h"
10 using namespace QtMobility;
12 class ShootQuery : public QObject
16 explicit ShootQuery(QObject *parent,
17 CamShooter *camShooterSingleton,
18 QMessageAddress remoteAddr);
19 virtual ~ShootQuery();
24 void slot_imageReady(const QString &);
25 void slot_message_updated(const QMessageId&, const QMessageManager::NotificationFilterIdSet&);
28 QMessageManager *msgManager;
29 QMessageService *msgService;
30 CamShooter *camShooter;
31 QMessageAddress remoteAddr;
32 QMessageManager::NotificationFilterId filterId;
35 #endif // SHOOTQUERY_H