diff options
Diffstat (limited to 'lib/src/turnsmm/private')
| -rw-r--r-- | lib/src/turnsmm/private/participant_p.hpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/lib/src/turnsmm/private/participant_p.hpp b/lib/src/turnsmm/private/participant_p.hpp new file mode 100644 index 0000000..e3f4ce8 --- /dev/null +++ b/lib/src/turnsmm/private/participant_p.hpp @@ -0,0 +1,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
\ No newline at end of file |
