summaryrefslogtreecommitdiff
path: root/TAO/examples/Borland/ReceiverImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Borland/ReceiverImpl.cpp')
-rw-r--r--TAO/examples/Borland/ReceiverImpl.cpp36
1 files changed, 0 insertions, 36 deletions
diff --git a/TAO/examples/Borland/ReceiverImpl.cpp b/TAO/examples/Borland/ReceiverImpl.cpp
deleted file mode 100644
index 77d2db41f71..00000000000
--- a/TAO/examples/Borland/ReceiverImpl.cpp
+++ /dev/null
@@ -1,36 +0,0 @@
-// $Id$
-//---------------------------------------------------------------------------
-#include "pch.h"
-#pragma hdrstop
-
-#include "ReceiverImpl.h"
-#include "ChatClientWnd.h"
-//---------------------------------------------------------------------------
-TReceiverImplementation::TReceiverImplementation ()
- : orb_ (0)
-{
-}
-//---------------------------------------------------------------------------
-TReceiverImplementation::~TReceiverImplementation ()
-{
-}
-//---------------------------------------------------------------------------
-void TReceiverImplementation::message (const char* msg) throw (CORBA::SystemException)
-{
- ::PostMessage (ChatClientWindow->Handle,
- WM_MESSAGE_RECEIVED,
- (WPARAM) new String (msg),
- (LPARAM) 0);
-}
-//---------------------------------------------------------------------------
-void TReceiverImplementation::shutdown () throw (CORBA::SystemException)
-{
- // Instruct the ORB to shutdown.
- orb_->shutdown ();
-}
-//---------------------------------------------------------------------------
-void TReceiverImplementation::orb (CORBA::ORB_ptr o)
-{
- orb_ = CORBA::ORB::_duplicate (o);
-}
-//---------------------------------------------------------------------------