packio
rpc.h
1 // This Source Code Form is subject to the terms of the Mozilla Public
2 // License, v. 2.0. If a copy of the MPL was not distributed with this
3 // file, You can obtain one at https://mozilla.org/MPL/2.0/.
4 
5 #ifndef PACKIO_RPC_H
6 #define PACKIO_RPC_H
7 
8 #include <optional>
9 #include <string>
10 
11 namespace packio {
12 
13 enum class call_type { request = 0, notification = 1 };
14 
15 } // packio
16 
17 #endif // PACKIO_RPC_H
The packio namespace.
Definition: arg.h:14