summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-23 18:28:55 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-23 18:28:55 +0000
commit6d6fc9a7884f7624a081ff61fd28bcd338c4929b (patch)
tree8357cbc8c4425aa4d7af69491ba7624b96011f51
parent22fc82a0d549c2b2a37f8a55f6fadd66b6560b9b (diff)
downloadATCD-6d6fc9a7884f7624a081ff61fd28bcd338c4929b.tar.gz
This commit was manufactured by cvs2svn to create branch 'IR'.
-rw-r--r--TAO/examples/Simple/time/Time_Client_i.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/TAO/examples/Simple/time/Time_Client_i.h b/TAO/examples/Simple/time/Time_Client_i.h
new file mode 100644
index 00000000000..9e57dce0259
--- /dev/null
+++ b/TAO/examples/Simple/time/Time_Client_i.h
@@ -0,0 +1,52 @@
+// -*- 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 */