aboutsummaryrefslogtreecommitdiff
path: root/core/src/init.cpp
blob: 4f6781743373825109d77d3768a70885ca4aebe7 (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_model.hpp"

#include <glib-object.h>

namespace turns::core
{

  auto register_types() -> void
  {
    static_cast<void>(Participant{});
    static_cast<void>(TurnOderModel{});

    g_type_ensure(Glib::Value<Disposition>::value_type());
  }

}  // namespace turns::core