summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/echo/Echo_Client_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Simple/echo/Echo_Client_i.h')
-rw-r--r--TAO/examples/Simple/echo/Echo_Client_i.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/TAO/examples/Simple/echo/Echo_Client_i.h b/TAO/examples/Simple/echo/Echo_Client_i.h
deleted file mode 100644
index c26927826a7..00000000000
--- a/TAO/examples/Simple/echo/Echo_Client_i.h
+++ /dev/null
@@ -1,51 +0,0 @@
-// -*- C++ -*-
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/Simple/echo
-//
-// = FILENAME
-// Echo_Client_i.h
-//
-// = DESCRIPTION
-// This class implements the interface calls for RMI.
-//
-// = AUTHOR
-//
-// Balachandran Natarajan <bala@cs.wustl.edu>
-//
-// ============================================================================
-
-#ifndef ECHO_CLIENT_I_H
-#define ECHO_CLIENT_I_H
-
-#include "../Simple_util.h"
-#include "EchoC.h"
-
-class Echo_Client_i
-{
- // = TITLE
- // Echo_Client interface subclass.
- //
- // = DESCRIPTION
- // This class implements the interface between the interface
- // objects and the client .
-public:
- // = Initialization and termination methods.
- Echo_Client_i (void);
- // Constructor
-
- virtual ~Echo_Client_i (void);
- // Destructor
-
- virtual int run (const char *, int, char **);
- // Execute the methods
-
-private:
- Client<Echo, Echo_var> client;
- // Instantiate the client object.
-};
-
-#endif /* TIME_CLIENT_I_H */