summaryrefslogtreecommitdiff
path: root/TAO/tao/Valuetype/Bounded_Valuetype_Allocation_Traits_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Valuetype/Bounded_Valuetype_Allocation_Traits_T.h')
-rw-r--r--TAO/tao/Valuetype/Bounded_Valuetype_Allocation_Traits_T.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/TAO/tao/Valuetype/Bounded_Valuetype_Allocation_Traits_T.h b/TAO/tao/Valuetype/Bounded_Valuetype_Allocation_Traits_T.h
new file mode 100644
index 00000000000..321fa834aba
--- /dev/null
+++ b/TAO/tao/Valuetype/Bounded_Valuetype_Allocation_Traits_T.h
@@ -0,0 +1,65 @@
+#ifndef guard_bounded_valuetype_allocation_traits_hpp
+#define guard_bounded_valuetype_allocation_traits_hpp
+/**
+ * @file
+ *
+ * @brief Details can be found in the documentation for
+ * TAO::details::generic_sequence
+ *
+ * $Id$
+ *
+ * @author Carlos O'Ryan
+ */
+
+#include "tao/Basic_Types.h"
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+namespace TAO
+{
+namespace details
+{
+
+template<typename T, class ref_traits, CORBA::ULong MAX, bool dummy>
+struct bounded_valuetype_allocation_traits
+{
+ typedef T value_type;
+ typedef ref_traits valuetype_traits;
+
+ inline static CORBA::ULong default_maximum()
+ {
+ return MAX;
+ }
+
+ inline static value_type * default_buffer_allocation()
+ {
+ return allocbuf(MAX);
+ }
+
+ inline static value_type * allocbuf(CORBA::ULong /* maximum */)
+ {
+ value_type * buffer = new value_type[MAX];
+ // no throw
+ valuetype_traits::zero_range(buffer, buffer + MAX);
+
+ return buffer;
+ }
+
+ inline static void freebuf(value_type * buffer)
+ {
+ valuetype_traits::release_range(buffer, buffer + MAX);
+ delete[] buffer;
+ }
+
+ inline static CORBA::ULong maximum()
+ {
+ return MAX;
+ }
+};
+
+} // namespace details
+} // namespace TAO
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#endif // guard_bounded_valuetype_allocation_traits_hpp