openbox/otk/assassin.hh
2002-11-03 10:38:14 +00:00

15 lines
207 B
C++

#ifndef __assassin_hh
#define __assassin_hh
namespace otk {
struct PointerAssassin {
template<typename T>
inline void operator()(const T ptr) const {
delete ptr;
}
};
}
#endif // __assassin_hh