summaryrefslogtreecommitdiff
path: root/gui/src/init.cpp
blob: 4d68929b191bf72cd0cdda421e561042a61971a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "init.hpp"

#include "participant_editor.hpp"
#include "participant_row.hpp"
#include "preferences.hpp"

#include <glib-object.h>

auto Turns::gui::init() -> void
{
  g_type_ensure(ParticipantRow{nullptr}.get_type());
  g_type_ensure(ParticipantEditor{nullptr}.get_type());
  g_type_ensure(Preferences{}.get_type());
}