00001 #ifndef ATLFAST_DELETEOBJECT_H 00002 #define ATLFAST_DELETEOBJECT_H 00005 namespace Atlfast{ 00006 class DeleteObject{ 00007 public: 00008 template<class T> 00009 void operator()(T* t){delete t;} 00010 }; 00011 } 00012 #endif