summaryrefslogtreecommitdiff
path: root/src/internal/storage_backend_flatbuffers.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal/storage_backend_flatbuffers.hpp')
-rw-r--r--src/internal/storage_backend_flatbuffers.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/internal/storage_backend_flatbuffers.hpp b/src/internal/storage_backend_flatbuffers.hpp
index 6bdd707..d0946fd 100644
--- a/src/internal/storage_backend_flatbuffers.hpp
+++ b/src/internal/storage_backend_flatbuffers.hpp
@@ -15,6 +15,7 @@
*/
#pragma once
+#include "include/fb_generated.h"
#include "policy.hpp"
#include <memory>
@@ -22,8 +23,6 @@
namespace ldp_serialized {
class StorageBackendFlatbuffers {
- class StorageBackendFlatbuffersImpl;
- std::unique_ptr<StorageBackendFlatbuffersImpl> pimpl;
public:
StorageBackendFlatbuffers();
~StorageBackendFlatbuffers();
@@ -50,6 +49,8 @@ public:
template <typename T>
bool existsPolicyForGroup(gid_t gid) const;
+private:
+ const FB::File *file{nullptr};
};
}