IsisDlm  Version 0.2
IsisDlm.h
Go to the documentation of this file.
00001 
00008 #if !defined(IsisDlm_h)
00009 #define IsisDlm_h
00010 
00015 namespace ISISDLM {
00016 
00020 struct DeleteObject {
00021   template <typename T> 
00022     void operator()(const T* ptr) const {
00023       delete ptr;
00024     }
00025 };
00026 
00027 }  // namespace ISISDLM
00028       
00029 
00030 #endif