summaryrefslogtreecommitdiff
path: root/TAO/examples/Borland/ReceiverImpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Borland/ReceiverImpl.h')
-rw-r--r--TAO/examples/Borland/ReceiverImpl.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/TAO/examples/Borland/ReceiverImpl.h b/TAO/examples/Borland/ReceiverImpl.h
deleted file mode 100644
index bba6bf31db6..00000000000
--- a/TAO/examples/Borland/ReceiverImpl.h
+++ /dev/null
@@ -1,33 +0,0 @@
-// $Id$
-//---------------------------------------------------------------------------
-#ifndef ReceiverImplH
-#define ReceiverImplH
-//---------------------------------------------------------------------------
-#include "ReceiverS.h"
-//---------------------------------------------------------------------------
-class TReceiverImplementation : public POA_Receiver
-{
-public:
- // = Initialization and termination methods.
- TReceiverImplementation (void);
- // Constructor.
-
- ~TReceiverImplementation (void);
- // Destructor.
-
- virtual void message (const char* msg) throw (CORBA::SystemException);
-
- virtual void shutdown (void) throw (CORBA::SystemException);
- // Called when the chat server is going away. The client
- // implementation should shutdown the chat client in response to
- // this.
-
- void orb (CORBA::ORB_ptr o);
- // Set the ORB pointer.
-
-private:
- CORBA::ORB_var orb_;
- // ORB pointer.
-};
-//---------------------------------------------------------------------------
-#endif