blob: fdeba60f91e175cf4e00f6a5977fe63b1942e57e (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
// -*- C++ -*-
//=============================================================================
/**
* @file RIR_Narrow.h
*
* $Id$
*
* @author Carlos O'Ryan <coryan@atdesk.com>
*/
//=============================================================================
#ifndef TAO_UTILS_RIR_NARROW_H
#define TAO_UTILS_RIR_NARROW_H
#include /**/ "ace/pre.h"
#include "ace/config-all.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/PI/PI.h"
#include "tao/ORB.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace TAO
{
namespace Utils
{
/**
* @class RIR_Narrow
*
* @brief Helper class to obtain an initial reference and narrow it
* to the proper object reference.
*/
template<class T> class RIR_Narrow
{
public:
typedef typename T::_ptr_type _ptr_type;
typedef typename T::_var_type _var_type;
/// Use resolve_initial_references to find an object and then
/// narrow it.
static _ptr_type narrow (CORBA::ORB_ptr orb,
char const * id
ACE_ENV_ARG_DECL_WITH_DEFAULTS);
/// Use resolve_initial_references to find an object and then
/// narrow it.
static _ptr_type narrow (PortableInterceptor::ORBInitInfo_ptr orb,
char const * id
ACE_ENV_ARG_DECL_WITH_DEFAULTS);
private:
static _ptr_type narrow_object (CORBA::Object_ptr object
ACE_ENV_ARG_DECL_WITH_DEFAULTS);
};
} // namespace Utils
} // namespace TAO
TAO_END_VERSIONED_NAMESPACE_DECL
#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
# include "tao/Utils/RIR_Narrow.cpp"
#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */
#include /**/ "ace/post.h"
#endif /*TAO_UTILS_RIR_NARROW_H*/
|