summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/time/Time_Client_i.h
diff options
context:
space:
mode:
authorbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-01-16 00:28:52 +0000
committerbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-01-16 00:28:52 +0000
commit8f95cd5e03330f40d1df2c4d7f30ac94188d5022 (patch)
tree6833c21a4f93e12b24a8883e93f74a48f9bf38e3 /TAO/examples/Simple/time/Time_Client_i.h
parente1206fec1dd60b5b3ba871228a6338b89471d32f (diff)
downloadATCD-8f95cd5e03330f40d1df2c4d7f30ac94188d5022.tar.gz
*** empty log message ***
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, 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 */