gimp/app/gimpobject.c

30 lines
386 B
C
Raw Normal View History

#include "gimpobjectP.h"
static void
gimp_object_init (GimpObject *gobject)
{
}
static void
gimp_object_class_init (GimpObjectClass *gobjectclass)
{
}
1999-11-07 02:19:41 +08:00
GtkType
gimp_object_get_type (void)
{
1999-11-07 02:19:41 +08:00
static GtkType type = 0;
GIMP_TYPE_INIT(type,
GimpObject,
GimpObjectClass,
gimp_object_init,
gimp_object_class_init,
GTK_TYPE_OBJECT);
return type;
}