gimp/app/core/gimpobject.c
Lauri Alanko 6a02cda396 Started gimpset, a generic class for handling collections of
objects. (And to automatically manage their signals, not implemented
yet)

Moved drawable_apply_image to drawable.c

Created a global context object (image_context) to handle the
collection of images that the app manages.
1998-07-01 23:06:49 +00:00

29 lines
408 B
C

#include "gimpobjectP.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;
GIMP_TYPE_INIT(type,
GimpObject,
GimpObjectClass,
gimp_object_init,
gimp_object_class_init,
GTK_TYPE_OBJECT);
return type;
}