Top of document
©Copyright 1999 Rogue Wave Software

return_temporary_buffer


     Memory Handling Primitive

Summary

Pointer based primitive for handling memory

Contents

Synopsis

#include <memory>
template <class T>
void return_temporary_buffer (T* p, T*);

Description

The return_temporary_buffer templated function returns a buffer, previously allocated through get_temporary_buffer, to available memory. Parameter p points to the buffer.

See Also

allocate, get_temporary_buffer


Top of document