blob: bbc57e6f2ab41608890c5e6d41e2849777b7fef9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/*
* SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com>
* SPDX-License-Identifier: LGPL-2.1-only
*/
#ifndef TURNSMM_TURN_ORDER_P_HPP
#define TURNSMM_TURN_ORDER_P_HPP
#include "turns-turn-order.h"
#include <glib-object.h>
#include <glibmm/class.h>
#include <glibmm/object.h>
#include <glibmm/objectbase.h>
namespace Turns
{
class TurnOrder_Class : Glib::Class
{
public:
using BaseClassParent = GObjectClass;
using BaseClassType = TurnsTurnOrderClass;
using BaseObjectType = TurnsTurnOrder;
using CppClassParent = Glib::Object_Class;
using CppObjectType = class TURN_ORDER;
auto init() -> Glib::Class const &;
auto static class_init_function(void * gclass, void * data) -> void;
auto static wrap_new(GObject * object) -> Glib::ObjectBase *;
};
} // namespace Turns
#endif
|