summaryrefslogtreecommitdiff
path: root/lib/include/turnsmm/private/participant_p.hpp
blob: 4c6272a6c3f0927dd57a909c719340c10bc82375 (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_PARTICIPANT_P_HPP
#define TURNSMM_PARTICIPANT_P_HPP

#include "turns-participant.h"

#include <glib-object.h>

#include <glibmm/class.h>
#include <glibmm/object.h>
#include <glibmm/objectbase.h>

namespace Turns
{

  class Participant_Class : Glib::Class
  {
  public:
    using BaseClassParent = GObjectClass;
    using BaseClassType = TurnsParticipantClass;
    using BaseObjectType = TurnsParticipant;
    using CppClassParent = Glib::Object_Class;
    using CppObjectType = class Participant;

    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