Apply updated class names 26/115526/1
authorMu-Woong Lee <muwoong.lee@samsung.com>
Mon, 20 Feb 2017 08:14:42 +0000 (17:14 +0900)
committerMu-Woong Lee <muwoong.lee@samsung.com>
Mon, 20 Feb 2017 08:14:42 +0000 (17:14 +0900)
Change-Id: Iffc175e76e976f2798eccd8c5fe7662b78724162
Signed-off-by: Mu-Woong Lee <muwoong.lee@samsung.com>
src/ServiceLoader.cpp
src/ServiceLoader.h

index bd33e0b..ec5e6f8 100644 (file)
@@ -23,7 +23,7 @@
 
 using namespace ctx;
 
-std::vector<DBusService*> ServiceLoader::__services;
+std::vector<ServiceBase*> ServiceLoader::__services;
 
 ServiceLoader::ServiceLoader()
 {
index 63a5448..ca87135 100644 (file)
@@ -19,7 +19,7 @@
 
 #include <vector>
 #include <ContextTypes.h>
-#include <DBusService.h>
+#include <ServiceBase.h>
 
 namespace ctx {
 
@@ -31,11 +31,11 @@ namespace ctx {
        private:
                ServiceLoader();
 
-               static std::vector<DBusService*> __services;
+               static std::vector<ServiceBase*> __services;
 
                template<typename ServiceType> static void __load(GDBusConnection* conn)
                {
-                       DBusService *svc = NULL;
+                       ServiceBase *svc = NULL;
                        try {
                                svc = new ServiceType(conn);
                        } catch (std::exception& e) {