Joedb 9.1.4
The Journal-Only Embedded Database
Loading...
Searching...
No Matches
Writable_Command_Processor.h
Go to the documentation of this file.
1#ifndef joedb_Writable_Command_Processor_declared
2#define joedb_Writable_Command_Processor_declared
3
5
6namespace joedb
7{
8 class Writable;
9
10 /// @ingroup ui
12 {
14
15 private:
16 Writable &writable;
17 Writable &blob_writer;
18
19 Status process_command
20 (
21 const std::string &command,
22 std::istream &parameters,
23 std::istream &in,
24 std::ostream &out
25 ) final;
26
27 public:
29 (
30 Writable &writable,
31 Writable &blob_writer
32 ):
33 writable(writable),
34 blob_writer(blob_writer)
35 {}
36 };
37}
38
39#endif
Writable_Command_Processor(Writable &writable, Writable &blob_writer)
Definition Blob.h:7