%module xxx template struct Temply { T thing; }; struct A { int var; %template(TemplyInt) Temply; }; struct B { int var; }; %extend B { %template(TemplyDouble) Temply; }