Joedb 10.0.1
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
18 Status process_command
19 (
20 const std::string &command,
21 std::istream &parameters,
22 std::istream &in,
23 std::ostream &out
24 ) override;
25
26 public:
27 Writable_Command_Processor(Writable &writable): writable(writable) {}
28 };
29}
30
31#endif
Superclass with all joedb journal event listeners as virtual functions.
Definition Writable.h:17
Definition Blob.h:7