blob: 9151f67b1f9fd83808e920ef048359af0fccb145 (
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
|
// -*- c++ -*-
#ifndef _GLIBMM_OBJECT_P_H
#define _GLIBMM_OBJECT_P_H
#include <glibmm/class.h>
namespace Glib
{
class GLIBMM_API Object_Class : public Glib::Class
{
public:
using CppObjectType = Object;
using BaseObjectType = GObject;
using BaseClassType = GObjectClass;
static void class_init_function(void* g_class, void* class_data);
const Glib::Class& init();
static Glib::Object* wrap_new(GObject*);
};
} // namespace Glib
#endif /* _GLIBMM_OBJECT_P_H */
|