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