Files
gimp/app/core/gimpobject.c
Lauri Alanko 3897b71b72 Started doing a GtkObjectifying framework, and started cleaning images
from all sorts of ugly dependencies.
1998-06-28 10:39:58 +00:00

32 lines
507 B
C

#include <gtk/gtkobject.h>
#include "gimpobjectP.h"
#include "gimpobject.h"
static void
gimp_object_init (GimpObject *gobject)
{
}
static void
gimp_object_class_init (GimpObjectClass *gobjectclass)
{
}
GtkType gimp_object_get_type (void)
{
static GtkType type;
if(!type){
GtkTypeInfo info={
"GimpObject",
sizeof(GimpObject),
sizeof(GimpObjectClass),
gimp_object_class_init,
gimp_object_init,
NULL,
NULL};
type=gtk_type_unique(gtk_object_get_type(), &info);
}
return type;
}