Joedb 10.2.3
The Journal-Only Embedded Database
Loading...
Searching...
No Matches
Procedure.h
Go to the documentation of this file.
1#ifndef joedb_rpc_Procedure_declared
2#define joedb_rpc_Procedure_declared
3
5
6namespace joedb::rpc
7{
8 /// Procedure to be executed by joedb::rpc::Server
9 ///
10 /// @ingroup rpc
12 {
13 public:
14 virtual void execute(joedb::Abstract_File &file) const = 0;
15 virtual ~Procedure() = default;
16 };
17}
18
19#endif
Procedure to be executed by joedb::rpc::Server.
Definition Procedure.h:12
virtual ~Procedure()=default
virtual void execute(joedb::Abstract_File &file) const =0