// Copyright {Jagger Software Limited} 2003 #ifndef CONTAINER_CONSTRUCT_INCLUDED #define CONTAINER_CONSTRUCT_INCLUDED namespace container { template void construct(object_type * ptr, const argument_type & argument) { new(ptr) object_type(argument); } } #endif