blob: f47317b4790326a8acd2d54dc69dd618a538cb3e (
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
|
/* -*- C++ -*- */
//=============================================================================
/**
* @file Current_ORBInitializer_Base.h
*
* @author Iliyan Jeliazkov <iliyan@ociweb.com>
*/
//=============================================================================
#ifndef CURRENT_ORBINITIALIZER_BASE_H
#define CURRENT_ORBINITIALIZER_BASE_H
#include /**/ "ace/pre.h"
#include "ace/SString.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/PI/PI.h"
#include "tao/LocalObject.h"
#include "tao/TransportCurrent/TCC.h"
#include "tao/TransportCurrent/Transport_Current_Export.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace TAO
{
namespace Transport
{
class TAO_Transport_Current_Export Current_ORBInitializer_Base
: public virtual PortableInterceptor::ORBInitializer
, public virtual ::CORBA::LocalObject
{
public:
Current_ORBInitializer_Base (const ACE_TCHAR* id);
virtual ~Current_ORBInitializer_Base (void);
virtual void pre_init (PortableInterceptor::ORBInitInfo_ptr);
virtual void post_init (PortableInterceptor::ORBInitInfo_ptr info);
protected:
virtual TAO::Transport::Current_ptr
make_current_instance (TAO_ORB_Core* core, size_t tss_slot_id) = 0;
protected:
const ACE_TString id_;
Current_ORBInitializer_Base (const Current_ORBInitializer_Base &) = delete;
Current_ORBInitializer_Base &operator = (const Current_ORBInitializer_Base &) = delete;
};
} /* namespace Transport */
} /* namespace TAO */
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /* CURRENT_ORBINITIALIZER_BASE_H */
|