Move ResponseTaker class to response directory
authorLukasz Wojciechowski <l.wojciechow@partner.samsung.com>
Thu, 26 Jun 2014 09:03:41 +0000 (11:03 +0200)
committerRafal Krypa <r.krypa@samsung.com>
Thu, 3 Jul 2014 12:19:10 +0000 (14:19 +0200)
Change-Id: I5bbe58347dbe1411eaeb88dd173c0107b4bfd636

src/service/CMakeLists.txt
src/service/protocol/Protocol.h
src/service/request/RequestContext.h
src/service/response/ResponseTaker.cpp [moved from src/service/protocol/ResponseTaker.cpp with 100% similarity]
src/service/response/ResponseTaker.h [moved from src/service/protocol/ResponseTaker.h with 88% similarity]

index d1e9972..69d35ee 100644 (file)
@@ -25,9 +25,9 @@ SET(CYNARA_SOURCES
     ${CYNARA_SERVICE_PATH}/protocol/ProtocolAdmin.cpp
     ${CYNARA_SERVICE_PATH}/protocol/ProtocolClient.cpp
     ${CYNARA_SERVICE_PATH}/protocol/ProtocolSignal.cpp
-    ${CYNARA_SERVICE_PATH}/protocol/ResponseTaker.cpp
     ${CYNARA_SERVICE_PATH}/request/CheckRequest.cpp
     ${CYNARA_SERVICE_PATH}/request/RequestTaker.cpp
+    ${CYNARA_SERVICE_PATH}/response/ResponseTaker.cpp
     ${CYNARA_SERVICE_PATH}/sockets/Descriptor.cpp
     ${CYNARA_SERVICE_PATH}/sockets/SocketManager.cpp
     ${CYNARA_SERVICE_PATH}/storage/InMemoryStorageBackend.cpp
index f296c3f..5500cba 100644 (file)
@@ -27,8 +27,8 @@
 
 #include <common.h>
 
-#include <protocol/ResponseTaker.h>
 #include <request/pointers.h>
+#include <response/ResponseTaker.h>
 
 namespace Cynara {
 
index 77e3175..55ff9fe 100644 (file)
@@ -25,7 +25,7 @@
 
 #include <common.h>
 
-#include <protocol/ResponseTaker.h>
+#include <response/ResponseTaker.h>
 
 namespace Cynara {
 
similarity index 88%
rename from src/service/protocol/ResponseTaker.h
rename to src/service/response/ResponseTaker.h
index a4305d9..771adbc 100644 (file)
@@ -20,8 +20,8 @@
  * @brief       This file defines ResponseTaker class
  */
 
-#ifndef SRC_SERVICE_PROTOCOL_RESPONSETAKER_H_
-#define SRC_SERVICE_PROTOCOL_RESPONSETAKER_H_
+#ifndef SRC_SERVICE_RESPONSE_RESPONSETAKER_H_
+#define SRC_SERVICE_RESPONSE_RESPONSETAKER_H_
 
 #include <common.h>
 
@@ -39,4 +39,4 @@ public:
 
 } // namespace Cynara
 
-#endif /* SRC_SERVICE_PROTOCOL_RESPONSETAKER_H_ */
+#endif /* SRC_SERVICE_RESPONSE_RESPONSETAKER_H_ */