blob: c03f8d3804acd45a8a4aa8db29ec16bdf06ddc1e (
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
76
77
78
79
|
// -*- C++ -*-
//=============================================================================
/**
* @file Regular_POA.h
*
* $Id$
*
* Header file for CORBA's ORB type.
*
* @author Irfan Pyarali <irfan@cs.wustl.edu>
*/
//=============================================================================
#ifndef TAO_REGULAR_POA_H
#define TAO_REGULAR_POA_H
#include /**/ "ace/pre.h"
#include "portableserver_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/PortableServer/Root_POA.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
/**
* @class TAO_Regular_POA
*
* @brief Implementation of the PortableServer::POA interface.
*
* Implementation of the PortableServer::POA interface.
*/
class TAO_PortableServer_Export TAO_Regular_POA
: public TAO_Root_POA
{
public:
TAO_Regular_POA (const String &name,
TAO_POA_Manager &poa_manager,
const TAO_POA_Policy_Set &policies,
TAO_Root_POA *parent,
ACE_Lock &lock,
TAO_SYNCH_MUTEX &thread_lock,
TAO_ORB_Core &orb_core,
TAO_Object_Adapter *object_adapter
ACE_ENV_ARG_DECL);
virtual ~TAO_Regular_POA (void);
PortableServer::POA_ptr the_parent (ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS)
ACE_THROW_SPEC ((CORBA::SystemException));
protected:
virtual void remove_from_parent_i (ACE_ENV_SINGLE_ARG_DECL);
virtual CORBA::Boolean root (void) const;
virtual char root_key_type (void);
/// The parent of this POA, be aware that in case this pointer is nill,
/// we are a parent. This can be achieved by deriving from this Regular_POA
/// and pass a nill pointer as parent with the constructor.
TAO_Root_POA *parent_;
};
TAO_END_VERSIONED_NAMESPACE_DECL
// ****************************************************************
#if defined (__ACE_INLINE__)
# include "Regular_POA.inl"
#endif /* __ACE_INLINE__ */
#include /**/ "ace/post.h"
#endif /* TAO_REGULAR_POA_H */
|