summaryrefslogtreecommitdiff
path: root/main.cc
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2016-01-01 22:06:17 +0100
committerJavier <dev.git@javispedro.com>2016-01-01 22:06:17 +0100
commit5d82870a04d70ee6e3f075cd4e8a9b6f416e84bb (patch)
tree62892f246309bda674bc505281e4b11e5d2c0546 /main.cc
parenta45977185a485624095bff1a15024e9199eee676 (diff)
downloadsapd-5d82870a04d70ee6e3f075cd4e8a9b6f416e84bb.tar.gz
sapd-5d82870a04d70ee6e3f075cd4e8a9b6f416e84bb.zip
fix source and header paths
Diffstat (limited to 'main.cc')
-rw-r--r--main.cc16
1 files changed, 9 insertions, 7 deletions
diff --git a/main.cc b/main.cc
index 207f3ff..0b586de 100644
--- a/main.cc
+++ b/main.cc
@@ -1,15 +1,17 @@
#include <iostream>
+
#include <QtCore/QCoreApplication>
#include <QtCore/QSettings>
#include <QtCore/QStringList>
-#include "sapmanager.h"
-#include "sapbtlistener.h"
-#include "capabilityagent.h"
-#include "hostmanageragent.h"
-#include "webproxyagent.h"
-#include "notificationagent.h"
-#include "musicagent.h"
+#include <sap/sapmanager.h>
+#include <sap/sapbtlistener.h>
+#include <sap/capabilityagent.h>
+
+#include "agents/hostmanageragent.h"
+#include "agents/webproxyagent.h"
+#include "agents/notificationagent.h"
+#include "agents/musicagent.h"
using std::cerr;
using std::endl;