NAME
ACE_Cleanup_Adapter -
Adapter for ACE_Cleanup objects that allows them to be readily
managed by the ACE_Object_Manager.
SYNOPSIS
#include <ace/Managed_Object.h>
template<class TYPE>
class ACE_Cleanup_Adapter : public ACE_Cleanup
{
public:
ACE_Cleanup_Adapter (void);
virtual ~ACE_Cleanup_Adapter (void);
TYPE &object (void);
private:
TYPE object_;
};
DESCRIPTION
This template class adapts an object of any type to be an
ACE_Cleanup object. The object can then be destroyed
type-safely by the ACE_Object_Manager. This class is
typically used to replace a cast; but, it's a bit cleaner and
allows insertion of, say, run-time type identification
internally if desired.
PUBLIC MEMBERS
ACE_Cleanup_Adapter (void);
virtual ~ACE_Cleanup_Adapter (void);
Virtual destructor, needed by some compilers for vtable placement.
TYPE &object (void);
Accessor for contained object.
PRIVATE MEMBERS
TYPE object_;
AUTHORS
David L. Levine
LIBRARY
ace