blob: 3434f91acd3b2a7b9481c62d8931ba078487dc79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include "turns/core/init.hpp"
#include "turns/core/disposition.hpp"
#include "turns/core/participant.hpp"
#include "turns/core/turn_order.hpp"
#include <glib-object.h>
namespace turns::core
{
auto register_types() -> void
{
static_cast<void>(Participant{});
static_cast<void>(turn_order{});
g_type_ensure(Glib::Value<Disposition>::value_type());
}
} // namespace turns::core
|