blob: 8144ff18c87863169ef6e1c5ec3921b20f5bc348 (
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
|
// $Id$
// ============================================================================
//
// = LIBRARY
// TAO/tests/Object_Loader
//
// = FILENAME
// Test_i.h
//
// = AUTHOR
// Carlos O'Ryan
//
// ============================================================================
#ifndef TAO_OBJECT_LOADER_TEST_I_H
#define TAO_OBJECT_LOADER_TEST_I_H
#include "TestS.h"
#include "OLT_Export.h"
class OLT_Export Test_i : public POA_Test
{
// = TITLE
// Implement the Test interface
//
// = DESCRIPTION
//
public:
Test_i (PortableServer::POA_ptr poa);
// ctor
CORBA::Long instance_count (CORBA::Environment &)
ACE_THROW_SPEC (());
void destroy (CORBA::Environment &)
ACE_THROW_SPEC (());
PortableServer::POA_ptr _default_POA (CORBA::Environment &)
ACE_THROW_SPEC (());
private:
PortableServer::POA_var poa_;
// The default POA used for this object
static CORBA::Long instance_count_;
};
#if defined(__ACE_INLINE__)
#include "Test_i.i"
#endif /* __ACE_INLINE__ */
#endif /* TAO_OBJECT_LOADER_TEST_I_H */
|