summaryrefslogtreecommitdiff
path: root/gui/src/init.cpp
blob: 9192d3735ca10c1c7a7d79098ea22b7fb3c4786e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com>
 * SPDX-License-Identifier: LGPL-2.1-only
 */

#include "init.hpp"

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

#include <glib-object.h>

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