mirror of https://github.com/GNOME/gimp.git
24 lines
391 B
C
24 lines
391 B
C
![]() |
#ifndef __GIMPSETP_H__
|
||
|
#define __GIMPSETP_H__
|
||
|
|
||
|
#include "gimpobjectP.h"
|
||
|
#include "gimpset.h"
|
||
|
|
||
|
struct _GimpSet{
|
||
|
GimpObject gobject;
|
||
|
GtkType type;
|
||
|
GSList* list;
|
||
|
gboolean weak;
|
||
|
};
|
||
|
|
||
|
struct _GimpSetClass{
|
||
|
GimpObjectClass parent_class;
|
||
|
};
|
||
|
|
||
|
typedef struct _GimpSetClass GimpSetClass;
|
||
|
|
||
|
#define GIMP_SET_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gimp_set_get_type(), GimpSetClass)
|
||
|
|
||
|
|
||
|
#endif
|