PrivMX
DOCS
PrivMX Endpoint
v2.7.0
v2.7.0
Loading...
Searching...
No Matches
Constants.hpp
1
/*
2
PrivMX Endpoint.
3
Copyright © 2024 Simplito sp. z o.o.
4
5
This file is part of the PrivMX Platform (https://privmx.dev).
6
This software is Licensed under the PrivMX Free License.
7
8
See the License for the specific language governing permissions and
9
limitations under the License.
10
*/
11
12
#ifndef _PRIVMXLIB_ENDPOINT_EVENT_CONSTANTS_HPP_
13
#define _PRIVMXLIB_ENDPOINT_EVENT_CONSTANTS_HPP_
14
15
#include <cstdint>
16
17
namespace
privmx {
18
namespace
endpoint {
19
namespace
event {
20
21
namespace
EventDataSchema {
22
enum
Version : int64_t {
23
UNKNOWN = 0,
24
VERSION_1 = 1,
25
VERSION_5 = 5
26
};
27
}
28
constexpr
static
EventDataSchema::Version CURRENT_EVENT_DATA_SCHEMA_VERSION = EventDataSchema::Version::VERSION_5;
29
30
}
// namespace kvdb
31
}
// namespace endpoint
32
}
// namespace privmx
33
34
#endif
// #define _PRIVMXLIB_ENDPOINT_EVENT_CONSTANTS_HPP_
35
privmx
endpoint
event
Constants.hpp