blob: 35c9f311e19ab766d3f892d6dee6309d30be14da (
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
|
// -*- c++ -*-
// $Id$
// ============================================================================
//
// = LIBRARY
// TAO/tests/NestedUpCalls/Triangle_Test
//
// = FILENAME
// Object_B_i.h
//
// = DESCRIPTION
// This class implements the Object B of the
// Nested Upcalls - Triangle test.
//
// = AUTHORS
// Michael Kircher
//
// ============================================================================
#ifndef OBJECT_B_IMPL_H
# define OBJECT_B_IMPL_H
#include "Triangle_TestS.h"
class Object_B_i : public POA_Object_B
{
// = TITLE
// Implement the <Object_B> IDL interface.
public:
Object_B_i (void);
// Constructor.
virtual ~Object_B_i (void);
// Destructor.
virtual void foo(Object_A_ptr theObject_A_ptr)
ACE_THROW_SPEC ((CORBA::SystemException));
};
#endif /* OBJECT_B_IMPL_H */
|