blob: e3f4ce87cc6c8ea01749f4a394813f00b860b681 (
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
|
#ifndef TURNSMM_PARTICIPANT_P_HPP
#define TURNSMM_PARTICIPANT_P_HPP
#include "turns-participant.h"
#include <glibmm/class.h>
#include <glibmm/object.h>
#include <glibmm/objectbase.h>
#include <glib-object.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
|