Joedb 10.2.1
The Journal-Only Embedded Database
Loading...
Searching...
No Matches
Signature.h
Go to the documentation of this file.
1#ifndef joedb_rpc_Signature_declared
2#define joedb_rpc_Signature_declared
3
4#include <string>
5
6namespace joedb::rpc
7{
8 /// Signature of a procedure, used both on client and server side
9 ///
10 /// @ingroup rpc
11 struct Signature
12 {
13 const std::string name;
14 const std::string prolog;
15 };
16}
17
18#endif
Signature of a procedure, used both on client and server side.
Definition Signature.h:12
const std::string prolog
Definition Signature.h:14
const std::string name
Definition Signature.h:13