From: Lukasz Wojciechowski Date: Wed, 18 Jun 2014 16:40:37 +0000 (+0200) Subject: Add Storage related classes to CMakeLists, fix includes X-Git-Tag: accepted/tizen/common/20140722.142604~105 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=52135398a9589cd4f3b34fc0cd4e4007b01e5532;p=platform%2Fcore%2Fsecurity%2Fcynara.git Add Storage related classes to CMakeLists, fix includes Change-Id: Ie8f8e63df145ae80bca8b9e5022eec4f751a0ece --- diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index f6d7f77..5d68662 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -24,6 +24,8 @@ SET(COMMON_PATH ${CYNARA_PATH}/common) SET(COMMON_SOURCES ${COMMON_PATH}/containers/BinaryQueue.cpp ${COMMON_PATH}/log/log.cpp + ${COMMON_PATH}/types/PolicyBucket.cpp + ${COMMON_PATH}/types/PolicyKey.cpp ) ADD_LIBRARY(${TARGET_CYNARA_COMMON} SHARED ${COMMON_SOURCES}) diff --git a/src/service/CMakeLists.txt b/src/service/CMakeLists.txt index 206b64d..e980a11 100644 --- a/src/service/CMakeLists.txt +++ b/src/service/CMakeLists.txt @@ -30,6 +30,7 @@ SET(CYNARA_SOURCES ${CYNARA_SERVICE_PATH}/request/RequestContext.cpp ${CYNARA_SERVICE_PATH}/sockets/Descriptor.cpp ${CYNARA_SERVICE_PATH}/sockets/SocketManager.cpp + ${CYNARA_SERVICE_PATH}/storage/InMemoryStorageBackend.cpp ${CYNARA_SERVICE_PATH}/storage/Storage.cpp ) diff --git a/src/service/storage/InMemoryStorageBackend.h b/src/service/storage/InMemoryStorageBackend.h index f2a6187..6ed0518 100644 --- a/src/service/storage/InMemoryStorageBackend.h +++ b/src/service/storage/InMemoryStorageBackend.h @@ -24,9 +24,9 @@ #define INMEMORYSTORAGEBACKEND_H_ #include "StorageBackend.h" -#include "common/exceptions/NotImplementedException.h" -#include "common/exceptions/BucketNotExistsException.h" -#include "common/types/Policy.h" +#include +#include +#include #include #include