summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3683_Regression/Echo_Client_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_3683_Regression/Echo_Client_i.h')
-rw-r--r--TAO/tests/Bug_3683_Regression/Echo_Client_i.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/TAO/tests/Bug_3683_Regression/Echo_Client_i.h b/TAO/tests/Bug_3683_Regression/Echo_Client_i.h
new file mode 100644
index 00000000000..2ca50272169
--- /dev/null
+++ b/TAO/tests/Bug_3683_Regression/Echo_Client_i.h
@@ -0,0 +1,55 @@
+// -*- C++ -*-
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO/tests/Simple/echo
+//
+// = FILENAME
+// Echo_Client_i.h
+//
+// = DESCRIPTION
+// This class implements the interface calls for RMI.
+//
+// = AUTHOR
+//
+// Balachandran Natarajan <bala@cs.wustl.edu>
+//
+// ============================================================================
+
+#ifndef ECHO_CLIENT_I_H
+#define ECHO_CLIENT_I_H
+
+#include "Simple_util.h"
+#include "EchoC.h"
+
+class Echo_Client_i
+{
+ // = TITLE
+ // Echo_Client interface subclass.
+ //
+ // = DESCRIPTION
+ // This class implements the interface between the interface
+ // objects and the client .
+public:
+ // = Initialization and termination methods.
+ Echo_Client_i (void);
+ // Constructor
+
+ ~Echo_Client_i (void);
+ // Destructor
+
+ int run (const char *, int, ACE_TCHAR **);
+ // Execute the methods
+
+private:
+ int parse_args (int argc, ACE_TCHAR *argv[]);
+
+ Client<Echo> client_;
+ // Instantiate the client object.
+
+ size_t payload_length_;
+};
+
+#endif /* TIME_CLIENT_I_H */