Version 4.0.3: Rename ServerBase.* to MainLoop.* by following the Tizen naming rules 44/143044/2
authorMu-Woong Lee <muwoong.lee@samsung.com>
Tue, 8 Aug 2017 08:17:58 +0000 (17:17 +0900)
committerMu-Woong Lee <muwoong.lee@samsung.com>
Tue, 8 Aug 2017 08:36:07 +0000 (17:36 +0900)
Change-Id: Ib0ff13737207bd4c93536392d73c0a62e947122c
Signed-off-by: Mu-Woong Lee <muwoong.lee@samsung.com>
packaging/context-service.spec
src/agent/AgentMain.cpp
src/server/ServerMain.cpp
src/shared/MainLoop.cpp [moved from src/shared/ServerBase.cpp with 98% similarity]
src/shared/MainLoop.h [moved from src/shared/ServerBase.h with 90% similarity]

index 176a5d5..8b54afa 100644 (file)
@@ -1,6 +1,6 @@
 Name:       context-service
 Summary:    Tizen Contextual Service Framework
-Version:    4.0.2
+Version:    4.0.3
 Release:    1
 Group:      Service/Context
 License:    Apache-2.0
index fd271be..eba8448 100644 (file)
@@ -18,7 +18,7 @@
 #include <cstdlib>
 #include <systemd/sd-daemon.h>
 
-#include <ServerBase.h>
+#include <MainLoop.h>
 #include "AgentDBus.h"
 #include "AgentUtil.h"
 #include "PluginLoader.h"
index ae62b7c..9274f8b 100644 (file)
@@ -20,7 +20,7 @@
 
 #include <ContextTypes.h>
 #include <ServerUtil.h>
-#include <ServerBase.h>
+#include <MainLoop.h>
 #include "DBusConnector.h"
 #include "ServiceLoader.h"
 #include "ActiveUserMonitor.h"
similarity index 98%
rename from src/shared/ServerBase.cpp
rename to src/shared/MainLoop.cpp
index 2f60ced..faef344 100644 (file)
@@ -17,7 +17,7 @@
 #include <new>
 #include <exception>
 #include <stdexcept>
-#include "ServerBase.h"
+#include "MainLoop.h"
 
 #define NEW_FAIL_LIMIT 3
 
similarity index 90%
rename from src/shared/ServerBase.h
rename to src/shared/MainLoop.h
index e3bf1e4..c6e8c78 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef __CONEXT_SERVER_BASE_H__
-#define __CONEXT_SERVER_BASE_H__
+#ifndef __CONEXT_SERVICE_MAIN_LOOP_H__
+#define __CONEXT_SERVICE_MAIN_LOOP_H__
 
 #include <ContextTypes.h>