Skip to content

Commit 26cdc32

Browse files
committed
more work in progress
1 parent 5928db2 commit 26cdc32

15 files changed

+1115
-151
lines changed

Sources/PrivMXEndpointStreamsLow/WebRtcInterfaceInstance.cpp

Lines changed: 0 additions & 14 deletions
This file was deleted.
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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_STREAM_CONSTANTS_HPP_
13+
#define _PRIVMXLIB_ENDPOINT_STREAM_CONSTANTS_HPP_
14+
15+
#include <cstdint>
16+
17+
namespace privmx {
18+
namespace endpoint {
19+
namespace stream {
20+
21+
namespace StreamRoomDataSchema {
22+
enum Version : int64_t {
23+
UNKNOWN = 0,
24+
VERSION_5 = 5
25+
};
26+
}
27+
constexpr static StreamRoomDataSchema::Version CURRENT_STREAM_ROOM_DATA_SCHEMA_VERSION = StreamRoomDataSchema::Version::VERSION_5;
28+
29+
} // namespace stream
30+
} // namespace endpoint
31+
} // namespace privmx
32+
33+
#endif // #define _PRIVMXLIB_ENDPOINT_STREAM_CONSTANTS_HPP_
34+

0 commit comments

Comments
 (0)