summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/ThruPOA_Object_Proxy_Impl.h
blob: 93c0832c312239050d4b8762923f67f378793d6b (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
// $Id$

// ============================================================================
//
// = LIBRARY
//    TAO
//
// = FILENAME
//    ThruPOA_Object_Proxy_Impl.h
//
// = DESCRIPTION
//    This files contains the definition of the ThruPOA proxy
//    for the CORBA::Object class.
//
// = AUTHOR
//     Angelo Corsaro <corsaro@cs.wustl.edu>
//
// ============================================================================

#ifndef TAO_THRUPOA_OBJECT_PROXY_IMPL_H_
#define TAO_THRUPOA_OBJECT_PROXY_IMPL_H_

#include "portableserver_export.h"

// -- ACE Include --
#include "ace/pre.h"

// -- TAO Include --
#include "tao/corbafwd.h"
#include "tao/Object_Proxy_Impl.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */


class TAO_PortableServer_Export TAO_ThruPOA_Object_Proxy_Impl : public virtual TAO_Object_Proxy_Impl
{
  // = TITLE
  //    TAO_ThruPOA_Object_Proxy_Impl
  //
  // = DESCRIPTION
  //    This class implements the ThruPOA proxy for the CORBA::Object class.
public:

  TAO_ThruPOA_Object_Proxy_Impl (void);

  virtual ~TAO_ThruPOA_Object_Proxy_Impl (void);

  virtual CORBA::Boolean _is_a (const CORBA::Object_ptr target,
                                const CORBA::Char *logical_type_id,
                                CORBA_Environment &ACE_TRY_ENV);

#if (TAO_HAS_MINIMUM_CORBA == 0)

  virtual CORBA::Boolean _non_existent (const CORBA::Object_ptr target,
                                        CORBA_Environment &ACE_TRY_ENV);

  virtual CORBA_InterfaceDef_ptr _get_interface (
      const CORBA::Object_ptr target,
      CORBA_Environment &ACE_TRY_ENV
    );

#endif /* TAO_HAS_MINIMUM_CORBA == 0 */

};

#include "ace/post.h"

#endif /* TAO_THRUPOA_OBJECT_PROXY_IMPL_H_ */