summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ior_corbaname/ior_corbaname_client_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/ior_corbaname/ior_corbaname_client_i.h')
-rw-r--r--TAO/orbsvcs/tests/ior_corbaname/ior_corbaname_client_i.h64
1 files changed, 64 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/ior_corbaname/ior_corbaname_client_i.h b/TAO/orbsvcs/tests/ior_corbaname/ior_corbaname_client_i.h
new file mode 100644
index 00000000000..8a54f83270c
--- /dev/null
+++ b/TAO/orbsvcs/tests/ior_corbaname/ior_corbaname_client_i.h
@@ -0,0 +1,64 @@
+// -*- C++ -*-
+// $Id$
+
+// ===========================================================
+//
+// = LIBRARY
+// TAO/tests/ior_corbaname/
+//
+// = FILENAME
+// ior_corbaname_client_i.h
+//
+// = DESCRIPTION
+// This class implements a simple client which sends a corbaname:
+// style url to the server and gets a response from the
+// server to indicate that the server has received the request.
+//
+// = AUTHORS
+// Priyanka Gontla <pgontla@ece.uci.edu>
+//
+//============================================================
+
+
+#if !defined (IOR_CORBANAME_CLIENT_I_H)
+#define IOR_CORBANAME_CLIENT_I_H
+
+#include "corbanameC.h"
+#include "orbsvcs/CosNamingC.h"
+
+class IOR_corbaname_Client_i
+{
+ // = TITLE
+ // NContextExt Client Implementation
+ //
+ // = DESCRIPTION
+ //
+
+ public:
+ // = Constructor and destructor.
+ IOR_corbaname_Client_i (void);
+ ~IOR_corbaname_Client_i (void);
+
+ int run (void);
+ // Execute the client example code.
+
+ int init (int argc, char **argv);
+ // Initialize the client communication endpoint with the server.
+
+ private:
+
+ int argc_;
+ // # of arguments on the command line.
+
+ char **argv_;
+ // arguments from command line.
+
+ CORBA::ORB_var orb_;
+ // ORB
+
+ CosNaming::NamingContextExt_var naming_context_;
+ // Naming context
+
+};
+
+#endif /* IOR_CORBANAME_CLIENT_I_H */