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