#include <Bounded_Value_Allocation_Traits_T.h>
Public Types | |
| typedef T | value_type |
Static Public Member Functions | |
| CORBA::ULong | default_maximum () |
| value_type * | default_buffer_allocation () |
| value_type * | allocbuf (CORBA::ULong) |
| void | freebuf (value_type *buffer) |
| CORBA::ULong | maximum () |
|
|||||
|
Definition at line 26 of file Bounded_Value_Allocation_Traits_T.h. |
|
||||||||||
|
Definition at line 38 of file Bounded_Value_Allocation_Traits_T.h.
00039 {
00040 return new value_type[MAX];
00041 }
|
|
|||||||||
|
Definition at line 33 of file Bounded_Value_Allocation_Traits_T.h.
00034 {
00035 return 0;
00036 }
|
|
|||||||||
|
Definition at line 28 of file Bounded_Value_Allocation_Traits_T.h.
00029 {
00030 return MAX;
00031 }
|
|
||||||||||
|
Definition at line 43 of file Bounded_Value_Allocation_Traits_T.h.
00044 {
00045 delete[] buffer;
00046 }
|
|
|||||||||
|
Definition at line 48 of file Bounded_Value_Allocation_Traits_T.h.
00049 {
00050 return MAX;
00051 }
|
1.3.6