#include <Bounded_Array_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) | 
      
  | 
  |||||
| 
 
 Definition at line 26 of file Bounded_Array_Allocation_Traits_T.h.  | 
  
      
  | 
  ||||||||||
| 
 
 Definition at line 38 of file Bounded_Array_Allocation_Traits_T.h. Referenced by TAO::details::bounded_array_allocation_traits< T, MAX, dummy >::default_buffer_allocation(). 
 00039   {
00040     return new value_type[MAX];
00041   }
 | 
  
      
  | 
  |||||||||
| 
 
 Definition at line 33 of file Bounded_Array_Allocation_Traits_T.h. References TAO::details::bounded_array_allocation_traits< T, MAX, dummy >::allocbuf(). 
 00034   {
00035     return allocbuf(MAX);
00036   }
 | 
  
      
  | 
  |||||||||
| 
 
 Definition at line 28 of file Bounded_Array_Allocation_Traits_T.h. 
 00029   {
00030     return MAX;
00031   }
 | 
  
      
  | 
  ||||||||||
| 
 
 Definition at line 43 of file Bounded_Array_Allocation_Traits_T.h. 
 00044   {
00045     delete[] buffer;
00046   }
 | 
  
 
1.3.6