mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +01:00
28 lines
482 B
C++
28 lines
482 B
C++
// -*- c++ -*-
|
|
|
|
#ifndef _GLIBMM_OBJECT_P_H
|
|
#define _GLIBMM_OBJECT_P_H
|
|
|
|
#include <glibmm/class.h>
|
|
|
|
namespace Glib
|
|
{
|
|
|
|
class Object_Class : public Glib::Class
|
|
{
|
|
public:
|
|
typedef Object CppObjectType;
|
|
typedef GObject BaseObjectType;
|
|
typedef GObjectClass BaseClassType;
|
|
|
|
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 */
|
|
|