Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / examples / Borland / ReceiverImpl.h
blobedc18814304f04f9501ab1d5226961dd08b5dec2
1 //---------------------------------------------------------------------------
2 #ifndef ReceiverImplH
3 #define ReceiverImplH
4 //---------------------------------------------------------------------------
5 #include "ReceiverS.h"
6 //---------------------------------------------------------------------------
7 class TReceiverImplementation : public POA_Receiver
9 public:
10 /// Constructor.
11 TReceiverImplementation (;
13 /// Destructor.
14 ~TReceiverImplementation ();
16 virtual void message (const char* msg);
18 /// Called when the chat server is going away. The client
19 /// implementation should shutdown the chat client in response to
20 /// this.
21 virtual void shutdown ();
23 /// Set the ORB pointer.
24 void orb (CORBA::ORB_ptr o);
26 private:
27 /// ORB pointer.
28 CORBA::ORB_var orb_;
30 //---------------------------------------------------------------------------
31 #endif