Hide menu
Loading...
Searching...
No Matches
cadex::Base_Allocator< void > Class Reference

Implements specialization Base_Allocator<void>. More...

#include <Base_Allocator.hxx>

Public Types

typedef void * pointer
 Defines a pointer type.
 
typedef const void * const_pointer
 Defines a const pointer type.
 
typedef void value_type
 Defines a value type.
 

Detailed Description

Implements specialization Base_Allocator<void>.

This allocator can be used in the same way as any other specialization:

std::list<int, Base_Allocator<void> > aL;
aL.push_back (0);