1998-06-28 18:39:58 +08:00
|
|
|
#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),
|
1998-06-29 08:24:44 +08:00
|
|
|
(GtkClassInitFunc)gimp_object_class_init,
|
|
|
|
(GtkObjectInitFunc)gimp_object_init,
|
1998-06-28 18:39:58 +08:00
|
|
|
NULL,
|
|
|
|
NULL};
|
|
|
|
type=gtk_type_unique(gtk_object_get_type(), &info);
|
|
|
|
}
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|