blob: 22be2aea432b8f2ad1f366491f2bea726bd0df06 (
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
|
#ifndef object_reference_traits_base_hpp
#define object_reference_traits_base_hpp
/**
* @file
*
* @brief Base class for the object reference traits.
*
* @author Carlos O'Ryan
*/
#include "tao/Objref_VarOut_T.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace TAO
{
namespace details
{
template<typename object_t, typename object_t_var>
struct object_reference_traits_base
{
typedef object_t object_type;
typedef object_type * value_type;
typedef object_type const * const_value_type;
typedef object_t_var object_type_var;
inline static void release(object_type * object)
{
TAO::Objref_Traits<object_type>::release(object);
}
inline static object_type * duplicate(object_type * object)
{
return TAO::Objref_Traits<object_type>::duplicate(object);
}
inline static object_type * nil()
{
return TAO::Objref_Traits<object_type>::nil();
}
inline static object_type * default_initializer()
{
return nil();
}
};
} // namespace details
} // namespace TAO
TAO_END_VERSIONED_NAMESPACE_DECL
#endif // object_reference_traits_base_hpp
|