Open CASCADE Technology  7.7.0
Data Structures | Public Types | Public Member Functions | Protected Attributes

NCollection_StdAllocator< void > Class Reference

Implements specialization NCollection_StdAllocator<void>. More...

#include <NCollection_StdAllocator.hxx>

Data Structures

struct  rebind
 

Public Types

typedef void * pointer
 
typedef const void * const_pointer
 
typedef void value_type
 

Public Member Functions

 NCollection_StdAllocator ()
 Constructor. More...
 
 NCollection_StdAllocator (const Handle< NCollection_BaseAllocator > &theAlloc)
 Constructor. More...
 
 NCollection_StdAllocator (const NCollection_StdAllocator &X)
 Constructor. More...
 
const Handle< NCollection_BaseAllocator > & Allocator () const
 Returns an underlying NCollection_BaseAllocator instance. More...
 
NCollection_StdAllocatoroperator= (const NCollection_StdAllocator &X)
 Assignment operator. More...
 

Protected Attributes

Handle< NCollection_BaseAllocatormyAlloc
 

Detailed Description

Implements specialization NCollection_StdAllocator<void>.

Specialization is of low value and should normally be avoided in favor of a typed specialization.

Example of use:

NCollection_StdAllocator<void> aVAlloc (anIncAlloc);
std::vector<double, NCollection_StdAllocator<double> > aV3 (aVAlloc);
aV3.push_back (10.);
#define Handle(Class)
Define Handle() macro.
Definition: Standard_Handle.hxx:400
Definition: NCollection_IncAllocator.hxx:43
Implements specialization NCollection_StdAllocator<void>.
Definition: NCollection_StdAllocator.hxx:128

Member Typedef Documentation

◆ const_pointer

typedef const void* NCollection_StdAllocator< void >::const_pointer

◆ pointer

typedef void* NCollection_StdAllocator< void >::pointer

◆ value_type

typedef void NCollection_StdAllocator< void >::value_type

Constructor & Destructor Documentation

◆ NCollection_StdAllocator() [1/3]

Constructor.

Creates an object using default Open CASCADE allocation mechanism, i.e. which uses Standard::Allocate() and Standard::Free() underneath.

◆ NCollection_StdAllocator() [2/3]

Constructor.

Saves theAlloc as an underlying allocator instance.

◆ NCollection_StdAllocator() [3/3]

Constructor.

Copies Allocator() from X.

Member Function Documentation

◆ Allocator()

const Handle< NCollection_BaseAllocator >& NCollection_StdAllocator< void >::Allocator ( ) const
inline

Returns an underlying NCollection_BaseAllocator instance.

Returns an object specified in the constructor.

◆ operator=()

NCollection_StdAllocator& NCollection_StdAllocator< void >::operator= ( const NCollection_StdAllocator< void > &  X)
inline

Assignment operator.

Field Documentation

◆ myAlloc


The documentation for this class was generated from the following file: