IsisDlm  Version 0.2
IsisDlm.h
Go to the documentation of this file.
1 
8 #if !defined(IsisDlm_h)
9 #define IsisDlm_h
10 
15 namespace ISISDLM {
16 
20 struct DeleteObject {
21  template <typename T>
22  void operator()(const T* ptr) const {
23  delete ptr;
24  }
25 };
26 
27 } // namespace ISISDLM
28 
29 
30 #endif