Joedb 9.1.4
The Journal-Only Embedded Database
Loading...
Searching...
No Matches
writable_h.h
Go to the documentation of this file.
1#ifndef joedb_generator_writable_h_declared
2#define joedb_generator_writable_h_declared
3
5
6namespace joedb::generator
7{
8 /// @ingroup compiler
9 class writable_h: public Generator
10 {
11 public:
13 Generator(".", "writable.h", options)
14 {
15 }
16
17 void generate() override
18 {
19 out << R"RRR(#include "readonly.h"
20#include "File_Database.h"
21#include "Client.h"
22#include "File_Client.h"
23//#warning writable header is deprecated
24)RRR";
25 }
26 };
27}
28
29#endif
const Compiler_Options & options
Definition Generator.h:14
writable_h(const Compiler_Options &options)
Definition writable_h.h:12
One code generator for each of the file generated by joedbc.
Definition Client_h.cpp:5