summaryrefslogtreecommitdiff
path: root/tests/InterOp-Naming/Server_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/InterOp-Naming/Server_i.h')
-rw-r--r--tests/InterOp-Naming/Server_i.h57
1 files changed, 27 insertions, 30 deletions
diff --git a/tests/InterOp-Naming/Server_i.h b/tests/InterOp-Naming/Server_i.h
index e833b024a1e..35248fd2acd 100644
--- a/tests/InterOp-Naming/Server_i.h
+++ b/tests/InterOp-Naming/Server_i.h
@@ -1,20 +1,17 @@
-//$Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/InterOp-Naming
-//
-// = FILENAME
-// Server_i.h
-//
-// = DESCRIPTION
-// The class is the driver for the INS test server.
-//
-// = AUTHOR
-// Vishal Kachroo <vishal@cs.wustl.edu>
-//
-// ============================================================================
+
+//=============================================================================
+/**
+ * @file Server_i.h
+ *
+ * $Id$
+ *
+ * The class is the driver for the INS test server.
+ *
+ *
+ * @author Vishal Kachroo <vishal@cs.wustl.edu>
+ */
+//=============================================================================
+
#ifndef SERVER_I_H
#define SERVER_I_H
@@ -30,45 +27,45 @@ class Server_i
public:
// = Initialization and termination methods.
+ /// Constructor.
Server_i (void);
- // Constructor.
+ /// Destructor.
~Server_i (void);
- // Destructor.
+ /// Initialize the Server state - parsing arguments and waiting.
int init (int argc,
ACE_TCHAR *argv[]);
- // Initialize the Server state - parsing arguments and waiting.
+ /// Add an IOR to the ORB-IOR table.
int add_IOR_to_table (CORBA::String_var ior);
- // Add an IOR to the ORB-IOR table.
+ /// Run the orb.
int run (void);
- // Run the orb.
protected:
+ /// Servant class
INS_i servant_;
- // Servant class
+ /// Parses the commandline arguments.
int parse_args (void);
- // Parses the commandline arguments.
+ /// The ORB manager - a helper class for accessing the POA and
+ /// registering objects.
TAO_ORB_Manager orb_manager_;
- // The ORB manager - a helper class for accessing the POA and
- // registering objects.
+ /// File where the IOR of the server object is stored.
FILE *ior_output_file_;
- // File where the IOR of the server object is stored.
+ /// Used test the INS.
char * ins_;
- // Used test the INS.
+ /// Number of command line arguments.
int argc_;
- // Number of command line arguments.
+ /// The command line arguments.
ACE_TCHAR **argv_;
- // The command line arguments.
};
#endif /* SERVER_I_H */