gimp/app/core/gimpobject.c
Lauri Alanko faeaa7cc23 Removed most of the image id system. They're still used with pdb.
At quick glance, nothing seems to be broken, but if things weird
	out, blame me.

	Now just the same for layers, channels and displays...
1998-06-29 00:24:44 +00:00

32 lines
544 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),
(GtkClassInitFunc)gimp_object_class_init,
(GtkObjectInitFunc)gimp_object_init,
NULL,
NULL};
type=gtk_type_unique(gtk_object_get_type(), &info);
}
return type;
}