Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / NestedUpcall / Triangle_Test / Object_B_i.h
blob86e48064f8efd1f64552d8b605a772d0d02a0d99
2 //=============================================================================
3 /**
4 * @file Object_B_i.h
6 * This class implements the Object B of the
7 * Nested Upcalls - Triangle test.
9 * @author Michael Kircher
11 //=============================================================================
14 #ifndef OBJECT_B_IMPL_H
15 # define OBJECT_B_IMPL_H
17 #include "Triangle_TestS.h"
19 /**
20 * @class Object_B_i
22 * @brief Implement the <Object_B> IDL interface.
24 class Object_B_i : public POA_Object_B
26 public:
27 /// Constructor.
28 Object_B_i ();
30 /// Destructor.
31 virtual ~Object_B_i ();
33 virtual void foo(Object_A_ptr theObject_A_ptr);
35 virtual void shutdown ();
38 #endif /* OBJECT_B_IMPL_H */