summaryrefslogtreecommitdiff
path: root/ui/src/init.cpp
blob: 22440f4c47df2bc95ab58a2bb907e9898fda4c4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "turns/ui/init.hpp"

#include "turns/ui/participant_editor.hpp"
#include "turns/ui/participant_row.hpp"
#include "turns/ui/preferences.hpp"
#include "turns/ui/turn_order_view.hpp"

namespace turns::ui
{

  auto register_types() -> void
  {
    static_cast<void>(ParticipantEditor{{}});
    static_cast<void>(ParticipantRow{{}});
    static_cast<void>(Preferences{{}});
    static_cast<void>(turn_order_view{{}});
  }

}  // namespace turns::ui