diff options
| author | Tomasz Sterna <tomek@xiaoka.com> | 2014-06-24 03:36:17 +0200 |
|---|---|---|
| committer | Tomasz Sterna <tomek@xiaoka.com> | 2014-06-24 03:36:17 +0200 |
| commit | 79162515fc2ddb492fc24da80ca2000550971d4f (patch) | |
| tree | f91e013d0ef13931e00245c58baabc9aabd8be47 /daemon/daemon.cpp | |
| parent | 1f0cde7cfd31c180eaceeab4ee0ad24613eaf34c (diff) | |
Ported VoiceCallManager from Nemo/voicecall and wired to WatchConnector
Diffstat (limited to 'daemon/daemon.cpp')
| -rw-r--r-- | daemon/daemon.cpp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/daemon/daemon.cpp b/daemon/daemon.cpp index c50af39..b49ea6e 100644 --- a/daemon/daemon.cpp +++ b/daemon/daemon.cpp @@ -26,8 +26,18 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include "watchconnector.h" +#include "manager.h" + +#include <QCoreApplication> int main(int argc, char *argv[]) { + QCoreApplication app(argc, argv); + + watch::WatchConnector watch; + VoiceCallManager voice; + + Manager manager(&watch, &voice); + + return app.exec(); } |
