summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>1999-01-16 00:28:52 +0000
committerbala <balanatarajan@users.noreply.github.com>1999-01-16 00:28:52 +0000
commit56d3ce25bc5bf38e00fb5568ff0706f41019fa56 (patch)
tree6833c21a4f93e12b24a8883e93f74a48f9bf38e3
parent43ef97220dd8dc5208b12a2699b674cc11964383 (diff)
downloadATCD-56d3ce25bc5bf38e00fb5568ff0706f41019fa56.tar.gz
*** empty log message ***
-rw-r--r--TAO/examples/Simple/time/Time_Client_i.h51
1 files changed, 51 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..3dcf3a9edf9
--- /dev/null
+++ b/TAO/examples/Simple/time/Time_Client_i.h
@@ -0,0 +1,51 @@
+// -*- C++ -*-
+// $Id$
+// ============================================================================
+//
+// = LIBRARY
+// TAO/tests/Simple/time
+//
+// = FILENAME
+// Time_Client_i.h
+//
+// = DESCRIPTION
+// This class implements the interface calls for RMI.
+//
+// = AUTHOR
+// Darrell Brunsch <brunsch@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
+
+ ~Time_Client_i (void);
+ // Destructor
+
+ virtual int run (int, char** );
+ // Execute the methods
+
+ private:
+
+};
+
+#endif /* TIME_CLIENT_I_H */