summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/echo/Echo_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Simple/echo/Echo_i.h')
-rw-r--r--TAO/examples/Simple/echo/Echo_i.h62
1 files changed, 0 insertions, 62 deletions
diff --git a/TAO/examples/Simple/echo/Echo_i.h b/TAO/examples/Simple/echo/Echo_i.h
deleted file mode 100644
index d7d5498b70d..00000000000
--- a/TAO/examples/Simple/echo/Echo_i.h
+++ /dev/null
@@ -1,62 +0,0 @@
-// -*- C++ -*-
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/Simple/echo
-//
-// = FILENAME
-// Echo_i.h
-//
-// = DESCRIPTION
-// This class implements the Echo IDL interface.
-//
-// = AUTHOR
-// Kirthika Parameswaran <kirthika@cs.wustl.edu>
-//
-// ============================================================================
-
-#ifndef ECHO_I_H
-#define ECHO_I_H
-
-#include "EchoS.h"
-
-class Echo_i : public POA_Echo
-{
- // = TITLE
- // Echo Object Implementation
- //
- // = DESCRIPTION
- // The object implementation performs teh following functions:
- // -- To return the string which needs to be displayed
- // from the server.
- // -- shuts down the server
-public:
- // = Initialization and termination methods.
- Echo_i (void);
- // Constructor.
-
- ~Echo_i (void);
- // Destructor.
-
- virtual Echo::List *echo_list (const char *mesg,
- CORBA::Environment &env);
- // Return the mesg string back from the server.
-
- virtual char *echo_string (const char *mesg,
- CORBA::Environment &env);
- // Return the mesg string back from the server.
-
- virtual void shutdown (CORBA::Environment &env);
- // Shutdown the server.
-
- void orb (CORBA::ORB_ptr o);
- // Set the ORB pointer.
-
-private:
- CORBA::ORB_var orb_;
- // ORB pointer.
-};
-
-#endif /* ECHO_I_H */