diff options
Diffstat (limited to 'Tools/modulator/Templates/object_tp_dealloc')
-rw-r--r-- | Tools/modulator/Templates/object_tp_dealloc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Tools/modulator/Templates/object_tp_dealloc b/Tools/modulator/Templates/object_tp_dealloc new file mode 100644 index 0000000..b4d573e --- /dev/null +++ b/Tools/modulator/Templates/object_tp_dealloc @@ -0,0 +1,8 @@ + +static void +$abbrev$_dealloc(self) + $abbrev$object *self; +{ + /* XXXX Add your own cleanup code here */ + DEL(self); +} |