(py-indent-right, py-outdent-left): new commands, bound to C-c C-r and
[python/dscho.git] / Tools / modulator / Templates / object_head
blobbf69a516c58e872f6c13e2b5acf5a89e97f68013
1 /* Declarations for objects of type $name$ */
3 typedef struct {
4         OB_HEAD
5         /* XXXX Add your own stuff here */
6 } $abbrev$object;
8 staticforward typeobject $Abbrev$type;
10 #define is_$abbrev$object(v)            ((v)->ob_type == &$Abbrev$type)
12 /* ---------------------------------------------------------------- */