T
.
#include <OTC/collctn/holder.hh> template<class T> class OTC_Holder : public OTC_Link {
public:
static os_typespec* get_os_typespec();
~OTC_Holder();
OTC_Holder(T const& aItem);
inline T& item();
};
T
within a linked
list. Note that when parameterised over a pointer type, the object
held is not deleted when the holder is destroyed.
~OTC_Holder();
OTC_Holder(T const& aItem);
aItem
.
inline T& item();
OTC_Link
, OTC_Bucket