diff options
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(); } |
