summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/time-date/Time_Date_Client_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Simple/time-date/Time_Date_Client_i.h')
-rw-r--r--TAO/examples/Simple/time-date/Time_Date_Client_i.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/TAO/examples/Simple/time-date/Time_Date_Client_i.h b/TAO/examples/Simple/time-date/Time_Date_Client_i.h
deleted file mode 100644
index 98d8858d38a..00000000000
--- a/TAO/examples/Simple/time-date/Time_Date_Client_i.h
+++ /dev/null
@@ -1,53 +0,0 @@
-// -*- C++ -*-
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/examples/Simple/time-date
-//
-// = FILENAME
-// Time_Date_Client_i.h
-//
-// = DESCRIPTION
-// This class implements the interface calls for RMI.
-//
-// = AUTHOR
-// Douglas C. Schmidt <schmidt@cs.wustl.edu>
-//
-// ============================================================================
-
-#ifndef TIME_DATE_CLIENT_I_H
-#define TIME_DATE_CLIENT_I_H
-
-#include "../Simple_util.h"
-#include "Time_DateC.h"
-
-class Time_Date_Client_i
-{
- // = TITLE
- // Time_Date_Client interface adapter.
- //
- // = DESCRIPTION
- // This class implements the interface between the interface
- // objects and the client.
-public:
- // = Initialization and termination methods.
- Time_Date_Client_i (void);
- // Constructor
-
- virtual ~Time_Date_Client_i (void);
- // Destructor
-
- virtual int run (const char *, int, char *[]);
- // Execute the methods.
-
- virtual int parse_args (int argc, char *argv[]);
- // Parses the command line arguments.
-
-private:
- Client<Time_Date, Time_Date_var> client_;
- // Instantiate the client object.
-};
-
-#endif /* TIME_CLIENT_I_H */