cmake: no need to prepend prefix
[profile/ivi/automotive-message-broker.git] / ambd / qtmainloop.h
1 #ifndef _QTMAINLOOP_H_
2 #define _QTMAINLOOP_H_
3
4 #include <QCoreApplication>
5 #include "imainloop.h"
6
7 class QtMainLoop: public IMainLoop
8 {
9 public:
10
11         QtMainLoop(int argc, char **argv);
12         ~QtMainLoop();
13
14         int exec();
15 private:
16         QCoreApplication* app;
17 };
18
19 #endif