Also move RandomKeyGenerator to utils package

This commit is contained in:
Sebastian Messmer 2014-12-06 15:50:37 +01:00
parent abcc766375
commit e0e9129099
6 changed files with 5 additions and 5 deletions

View File

@ -1,3 +1,3 @@
add_library(blobstore_ondisk OnDiskBlob.cpp OnDiskBlobStore.cpp RandomKeyGenerator.cpp FileAlreadyExistsException.cpp)
add_library(blobstore_ondisk OnDiskBlob.cpp OnDiskBlobStore.cpp FileAlreadyExistsException.cpp)
target_link_libraries(blobstore_ondisk blobstore_utils boost_filesystem boost_system cryptopp)

View File

@ -1,7 +1,7 @@
#include "OnDiskBlobStore.h"
#include "OnDiskBlob.h"
#include "RandomKeyGenerator.h"
#include "blobstore/utils/RandomKeyGenerator.h"
using std::unique_ptr;
using std::string;

View File

@ -1,2 +1,2 @@
add_library(blobstore_utils Data.cpp FileDoesntExistException.cpp)
add_library(blobstore_utils Data.cpp RandomKeyGenerator.cpp FileDoesntExistException.cpp)

View File

@ -1,4 +1,4 @@
#include <blobstore/implementations/ondisk/RandomKeyGenerator.h>
#include "RandomKeyGenerator.h"
using std::string;

View File

@ -1,6 +1,6 @@
#include "gtest/gtest.h"
#include "blobstore/implementations/ondisk/RandomKeyGenerator.h"
#include "blobstore/utils/RandomKeyGenerator.h"
using ::testing::Test;