blob: 0d6a80800e3d032e0606953b3c6e351ed53de671 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "turns-init.h"
#include "turns-participant.h"
#include "turns-turn-order.h"
#include <glib-object.h>
#include <glib.h>
G_BEGIN_DECLS
auto turns_init() -> void
{
g_type_ensure(TURNS_TYPE_PARTICIPANT);
g_type_ensure(TURNS_TYPE_PARTICIPANT_DISPOSITION);
g_type_ensure(TURNS_TYPE_TURN_ORDER);
g_type_ensure(TURNS_TYPE_TURN_ORDER_SORT_MODE);
}
G_END_DECLS
|