You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
354 B
28 lines
354 B
#ifndef GLW_OBJECTDELETER_H |
|
#define GLW_OBJECTDELETER_H |
|
|
|
#include "./common.h" |
|
|
|
namespace glw |
|
{ |
|
|
|
class Object; |
|
|
|
namespace detail |
|
{ |
|
|
|
class ObjectDeleter |
|
{ |
|
public: |
|
|
|
typedef void BaseType; |
|
typedef ObjectDeleter ThisType; |
|
|
|
inline void operator () (Object * object) const; |
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
#endif // GLW_OBJECTDELETER_H
|
|
|