Merge branch 'master' of https://github.com/otcshare/automotive-message-broker
[profile/ivi/automotive-message-broker.git] / ambd / glibmainloop.h
1 #ifndef _GLIBMAINLOOP_H_
2 #define _GLIBMAINLOOP_H_
3
4 #include "imainloop.h"
5 #include <glib.h>
6
7 class GlibMainLoop: public IMainLoop
8 {
9 public:
10
11         GlibMainLoop(int argc, char** argv);
12         ~GlibMainLoop();
13
14         int exec();
15
16 private:
17         GMainLoop* mainLoop;
18 };
19
20
21 #endif