summaryrefslogtreecommitdiff
path: root/orbsvcs/tests/ior_corbaname/ior_corbaname_client_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'orbsvcs/tests/ior_corbaname/ior_corbaname_client_i.h')
-rw-r--r--orbsvcs/tests/ior_corbaname/ior_corbaname_client_i.h58
1 files changed, 28 insertions, 30 deletions
diff --git a/orbsvcs/tests/ior_corbaname/ior_corbaname_client_i.h b/orbsvcs/tests/ior_corbaname/ior_corbaname_client_i.h
index 18ab287ea32..01b69e8bbfc 100644
--- a/orbsvcs/tests/ior_corbaname/ior_corbaname_client_i.h
+++ b/orbsvcs/tests/ior_corbaname/ior_corbaname_client_i.h
@@ -1,23 +1,20 @@
// -*- 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>
-//
-//============================================================
+
+//=============================================================================
+/**
+ * @file ior_corbaname_client_i.h
+ *
+ * $Id$
+ *
+ * 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.
+ *
+ *
+ * @author Priyanka Gontla <pgontla@ece.uci.edu>
+ */
+//=============================================================================
+
#if !defined (IOR_CORBANAME_CLIENT_I_H)
#define IOR_CORBANAME_CLIENT_I_H
@@ -25,38 +22,39 @@
#include "corbanameC.h"
#include "orbsvcs/CosNamingC.h"
+/**
+ * @class IOR_corbaname_Client_i
+ *
+ * @brief NContextExt Client Implementation
+ *
+ */
class IOR_corbaname_Client_i
{
- // = TITLE
- // NContextExt Client Implementation
- //
- // = DESCRIPTION
- //
public:
// = Constructor and destructor.
IOR_corbaname_Client_i (void);
~IOR_corbaname_Client_i (void);
+ /// Execute the client example code.
int run (void);
- // Execute the client example code.
+ /// Initialize the client communication endpoint with the server.
int init (int argc, ACE_TCHAR **argv);
- // Initialize the client communication endpoint with the server.
private:
+ /// # of arguments on the command line.
int argc_;
- // # of arguments on the command line.
+ /// arguments from command line.
ACE_TCHAR **argv_;
- // arguments from command line.
+ /// ORB
CORBA::ORB_var orb_;
- // ORB
+ /// Naming context
CosNaming::NamingContextExt_var naming_context_;
- // Naming context
};
#endif /* IOR_CORBANAME_CLIENT_I_H */