Joedb 10.2.0
The Journal-Only Embedded Database
Loading...
Searching...
No Matches
Readonly_Interpreted_File.h
Go to the documentation of this file.
1#ifndef joedb_Readonly_Interpreted_File_declared
2#define joedb_Readonly_Interpreted_File_declared
3
8
9namespace joedb
10{
11 /// Read a text file in joedbi format
12 ///
13 /// @ingroup journal
15 {
16 protected:
19
20 Readonly_Interpreted_File(std::istream &stream, bool readonly);
21
22 public:
23 Readonly_Interpreted_File(std::istream &stream):
24 Readonly_Interpreted_File(stream, true)
25 {
26 }
27
28 Readonly_Interpreted_File(std::istream &&stream):
30 {
31 }
32
33 Readonly_Interpreted_File(const char *file_name):
35 {
36 }
37
38 Readonly_Interpreted_File(const std::string &file_name):
40 {
41 }
42
44 };
45}
46
47#endif
std::string data
Definition Memory_File.h:14
Read a text file in joedbi format.
Readonly_Interpreted_File(const std::string &file_name)