summaryrefslogtreecommitdiff
path: root/lib/src/turns-init.cpp
blob: 6fbe8373ab0f03cfdf9f2fa59f5f97e98f40a6a1 (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-enums.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_DISPOSITION);
  g_type_ensure(TURNS_TYPE_PARTICIPANT);
  g_type_ensure(TURNS_TYPE_TURN_ORDER);
}

G_END_DECLS