Struct

GimpObjectArray

Description

struct GimpObjectArray {
  GType object_type;
  GObject** data;
  gsize length;
  gboolean static_data;
}
No description available.
Structure members
object_type

GType of the contained objects.

data

Pointer to the array’s data.

length

Length of data, in number of objects.

static_data

Whether data points to statically allocated memory.

Constructors

gimp_object_array_new

Creates a new GimpObjectArray containing object pointers, of size length.

Instance methods

gimp_object_array_copy

Creates a new GimpObjectArray containing a deep copy of array.

gimp_object_array_free
No description available.