summaryrefslogtreecommitdiff
path: root/TAO/tao/Bounded_Array_Allocation_Traits_T.h
blob: 55ee5250321ffa7a15208e1a96028338c433f24b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#ifndef guard_bounded_array_allocation_traits_hpp
#define guard_bounded_array_allocation_traits_hpp
/**
 * @file
 *
 * @brief Details can be found in the documentation for
 * TAO::details::generic_sequence
 *
 * @author Carlos O'Ryan
 */

#include "tao/Basic_Types.h"

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

namespace TAO
{
namespace details
{
template<typename T, CORBA::ULong MAX, bool dummy>
struct bounded_array_allocation_traits
{
  typedef T value_type;

  inline static CORBA::ULong default_maximum()
  {
    return MAX;
  }

  inline static value_type * default_buffer_allocation()
  {
    return 0;
  }

  inline static value_type * allocbuf(CORBA::ULong /* maximum */)
  {
    return new value_type[MAX];
  }

  inline static value_type * allocbuf_noinit(CORBA::ULong /* maximum */)
  {
    return new value_type[MAX];
  }

  inline static void freebuf(value_type * buffer)
  {
    delete[] buffer;
  }
};
} // namespace details
} // namespace TAO


TAO_END_VERSIONED_NAMESPACE_DECL

#endif // guard_unbounded_array_allocation_traits_hpp