Go to the documentation of this file.00001 #ifndef GLW_OBJECTDELETER_H
00002 #define GLW_OBJECTDELETER_H
00003
00004 #include "./common.h"
00005
00006 namespace glw
00007 {
00008
00009 class Object;
00010
00011 namespace detail
00012 {
00013
00014 class ObjectDeleter
00015 {
00016 public:
00017
00018 typedef void BaseType;
00019 typedef ObjectDeleter ThisType;
00020
00021 inline void operator () (Object * object) const;
00022 };
00023
00024 };
00025
00026 };
00027
00028 #endif // GLW_OBJECTDELETER_H