summaryrefslogtreecommitdiffstats
path: root/Tools/modulator/Templates/object_head
blob: 07d1f6a9fd65ed089cc87a79e38b64c026cc2b87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

/* Declarations for objects of type $name$ */

typedef struct {
	PyObject_HEAD
	/* XXXX Add your own stuff here */
} $abbrev$object;

static PyTypeObject $Abbrev$type;



/* ---------------------------------------------------------------- */