summaryrefslogtreecommitdiff
path: root/TAO/tao/Value_Traits_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Value_Traits_T.h')
-rw-r--r--TAO/tao/Value_Traits_T.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/TAO/tao/Value_Traits_T.h b/TAO/tao/Value_Traits_T.h
new file mode 100644
index 00000000000..ae6048d01ef
--- /dev/null
+++ b/TAO/tao/Value_Traits_T.h
@@ -0,0 +1,63 @@
+#ifndef guard_value_traits_hpp
+#define guard_value_traits_hpp
+/**
+ * @file
+ *
+ * @brief Implement the element manipulation traits for types with
+ * value-like semantics.
+ *
+ * $Id$
+ *
+ * @author Carlos O'Ryan
+ */
+
+#include <algorithm>
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+namespace TAO
+{
+namespace details
+{
+
+template<typename T, bool dummy>
+struct value_traits
+{
+ typedef T value_type;
+ typedef T const const_value_type;
+
+ inline static void zero_range(
+ value_type * begin , value_type * end)
+ {
+ std::fill(begin, end, value_type ());
+ }
+
+ inline static void initialize_range(
+ value_type * begin, value_type * end)
+ {
+ std::fill(begin, end, value_type ());
+ }
+
+# ifndef ACE_LACKS_MEMBER_TEMPLATES
+ // Allow MSVC++ >= 8 checked iterators to be used.
+ template <typename iter>
+ inline static void copy_range(
+ value_type * begin, value_type * end, iter dst)
+ {
+ std::copy(begin, end, dst);
+ }
+# else
+ inline static void copy_range(
+ value_type * begin, value_type * end, value_type * dst)
+ {
+ std::copy(begin, end, dst);
+ }
+# endif /* !ACE_LACKS_MEMBER_TEMPLATES */
+};
+
+} // namespace details
+} // namespace CORBA
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#endif // guard_value_traits_hpp