blob: 7bd596bfc10096277ca5c6d698fade374f8b6477 (
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
|
//=============================================================================
/**
* @file Object_A_i.h
*
* This class implements the Object A of the
* Nested Upcalls - Triangle test.
*
* @author Michael Kircher
*/
//=============================================================================
#ifndef OBJECT_B_IMPL_H
# define OBJECT_B_IMPL_H
#include "Triangle_TestS.h"
/**
* @class Object_A_i
*
* @brief Implement the <Object_A> IDL interface.
*/
class Object_A_i : public POA_Object_A
{
public:
/// Constructor.
Object_A_i (void);
/// Destructor.
virtual ~Object_A_i (void);
virtual void foo (Initiator_ptr theInitiator_ptr);
virtual void finish (void);
virtual void shutdown (void);
unsigned long finish_two_way_call_;
};
#endif /* OBJECT_B_IMPL_H */
|