mirror of https://github.com/GNOME/gimp.git
19 lines
261 B
C
19 lines
261 B
C
![]() |
#ifndef __GIMP_OBJECT_P_H__
|
||
|
#define __GIMP_OBJECT_P_H__
|
||
|
|
||
|
#include <gtk/gtkobject.h>
|
||
|
#include "gimpobjectF.h"
|
||
|
|
||
|
struct _GimpObject
|
||
|
{
|
||
|
GtkObject object;
|
||
|
};
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
GtkObjectClass parent_class;
|
||
|
}GimpObjectClass;
|
||
|
|
||
|
guint gimp_object_get_type(void);
|
||
|
#endif
|