summaryrefslogtreecommitdiff
path: root/TAO/tests/Simple/chat/Receiver_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Simple/chat/Receiver_i.h')
-rw-r--r--TAO/tests/Simple/chat/Receiver_i.h58
1 files changed, 0 insertions, 58 deletions
diff --git a/TAO/tests/Simple/chat/Receiver_i.h b/TAO/tests/Simple/chat/Receiver_i.h
deleted file mode 100644
index 5dc74c82336..00000000000
--- a/TAO/tests/Simple/chat/Receiver_i.h
+++ /dev/null
@@ -1,58 +0,0 @@
-// $Id$
-
-// ===========================================================
-//
-// = LIBRARY
-// TAO/tests/Simple/chat
-//
-// = FILENAME
-// Receiver_i.h
-//
-// = DESCRIPTION
-// Defines the implementation header for the Receiver interface
-//
-// = AUTHOR
-// Pradeep Gore <pradeep@cs.wustl.edu>
-//
-// ===========================================================
-
-#if !defined (RECEIVER_I_H)
-#define RECEIVER_I_H
-
-#include "ReceiverS.h"
-
-class Receiver_i : public POA_Receiver
-{
- // = TITLE
- // Receiver object implementation
- //
- // = DESCRIPTION
- // This class has methods which are called by the chat server.
- //
-
-public:
- // = Initialization and termination methods.
-
- Receiver_i (void);
- // Constructor
-
- ~Receiver_i (void);
- // Destructor
-
- virtual void message (const char *msg,
- CORBA::Environment &_tao_environment);
- // receives a message string
-
- virtual void shutdown (CORBA::Environment &_tao_environment);
- // 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 /* RECEIVER_I_H */