Joedb 10.4.3
The Journal-Only Embedded Database
Loading...
Searching...
No Matches
Brotli_File.h
Go to the documentation of this file.
1#ifndef joedb_Brotli_File_declared
2#define joedb_Brotli_File_declared
3
7
8namespace joedb
9{
10 namespace detail
11 {
12 class Brotli_File_Data
13 {
14 protected:
15 Brotli_Codec codec;
16 db::encoded_file::File_Database db;
17
18 public:
19 Brotli_File_Data(const char *file_name);
20 };
21 }
22
23 /// @ingroup journal
24 class Brotli_File: private detail::Brotli_File_Data, public Encoded_File
25 {
26 public:
27 Brotli_File(const char *file_name);
28
29 Brotli_File(const std::string &file_name): Brotli_File(file_name.c_str())
30 {
31 }
32 };
33}
34
35#endif
Brotli_File(const std::string &file_name)
Definition Brotli_File.h:29