diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9a400b8..1eb24f6 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -30,15 +30,15 @@ endif ()
set(SOURCES
exceptions.cpp
- table.cpp
+ storage.cpp
database.cpp
)
set(HEADERS
database.h
exceptions.h
- table.h
- table.hpp
+ storage.h
+ storage.hpp
cache.h
cache.hpp
serializer.h
diff --git a/cache.h b/cache.h
index 6f7042c..ba72f46 100644
--- a/cache.h
+++ b/cache.h
@@ -14,16 +14,18 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see .
-#ifndef DATABASE_CACHE_H
-#define DATABASE_CACHE_H
+#ifndef LMDBDATABASE_CACHE_H
+#define LMDBDATABASE_CACHE_H
-#include "database.h"
-#include "table.h"
#include