[#BloombergLP-bslma-DeallocateObjectProctor-2constructor-0b] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslma.adoc[bslma]::xref:BloombergLP/bslma/DeallocateObjectProctor.adoc[DeallocateObjectProctor]::DeallocateObjectProctor :relfileprefix: ../../../ :mrdocs: Create a proctor to manage objects allocated from an allocator. == Synopsis Declared in `<bslma_deallocateobjectproctor.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- DeallocateObjectProctor( ALLOCATOR const& allocator, xref:BloombergLP/bslma/DeallocateObjectProctor.adoc[PtrType] p, std::size_t n = 1); ---- == Description Create a proctor to manage the optionally specified `n` objects at the specified `p` address, which have been allocated from the specified `allocator`. If `p` is null, then the created proctor is disengaged (manages no objects). The behavior is undefined if `p` is non‐null but not allocated from `allocator` or if `p` does not point to an array of `n` objects. == Parameters [cols="1,4"] |=== | Name| Description | *allocator* | allocator (or pool) from which the objects were allocated | *p* | address of the objects to manage, or null if disengaged | *n* | number of objects to manage (1 by default) |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#