blob: a16c7a02d8924e05d323d93433354c82e2e7864b (
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
|
#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 ());
}
inline static void copy_range(
value_type * begin, value_type * end, value_type *dst)
{
std::copy(begin, end, dst);
}
};
} // namespace details
} // namespace CORBA
TAO_END_VERSIONED_NAMESPACE_DECL
#endif // guard_value_traits_hpp
|