summaryrefslogtreecommitdiff
path: root/TAO/tests/Simple/time/client_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Simple/time/client_impl.h')
-rw-r--r--TAO/tests/Simple/time/client_impl.h18
1 files changed, 11 insertions, 7 deletions
diff --git a/TAO/tests/Simple/time/client_impl.h b/TAO/tests/Simple/time/client_impl.h
index de32d31f689..7c315b1aa19 100644
--- a/TAO/tests/Simple/time/client_impl.h
+++ b/TAO/tests/Simple/time/client_impl.h
@@ -10,7 +10,8 @@
// client_impl.h
//
// = DESCRIPTION
-// This class implements a simple CORBA client.
+// This class implements a simple CORBA client that access a Time
+// server.
//
// = AUTHORS
// Darrell Brunsch <brunsch@cs.wustl.edu>
@@ -23,26 +24,29 @@
class Client_Impl
{
// = TITLE
- // Simple Client Implementation.
+ // Simple Client implementation.
//
// = DESCRIPTION
- // Class wrapper for a client which gets the server IOR and then
+ // Class wrapper for a client that gets the server IOR and then
// makes several calls to the server before optionally shutting
// it down.
public:
- // = Constructor and destructor.
+ // = Initialization and termination methods.
Client_Impl (void);
+ // Constructor.
+
~Client_Impl (void);
+ // Destructor.
int run (void);
// Execute client example code.
- int init (int argc, char **argv);
+ int init (int argc, char *argv[]);
// Initialize the client communication endpoint with server.
private:
int read_ior (char *filename);
- // Function to read the server ior from a file.
+ // Function to read the server IOR from a file.
int parse_args (void);
// Parses the arguments passed on the command line.
@@ -60,7 +64,7 @@ private:
// Key of the obj ref of the server.
u_int loop_count_;
- // Number of times to do the time() operation.
+ // Number of times to invoke the <time> operation.
int shutdown_;
// Flag for server shutdown.