51#ifndef LASS_GUARDIAN_OF_INCLUSION_STDE_DELETOR_H
52#define LASS_GUARDIAN_OF_INCLUSION_STDE_DELETOR_H
64struct deletor_t:
public std::unary_function<void, void>
68 template <
typename T>
void operator()(T iT) {
delete iT; }
80struct deletor_array_t:
public std::unary_function<void, void>
84 template <
typename T>
void operator()(T iT) {
delete [] iT; }
lass extensions to the standard library
Library for Assembled Shared Sources.
functor to delete array argument
functor to delete object argument