1 2 3 4 5 6 7 8 9 10 11 12
#ifndef MTOOLS_TMPL #define MTOOLS_TMPL template <class type_> void mtools<type_>::delete_obj( type_ type_obj ) { if ( type_obj ) delete type_obj; } #endif