summaryrefslogtreecommitdiff
path: root/tests/Xt_Stopwatch/Client.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Xt_Stopwatch/Client.h')
-rw-r--r--tests/Xt_Stopwatch/Client.h39
1 files changed, 18 insertions, 21 deletions
diff --git a/tests/Xt_Stopwatch/Client.h b/tests/Xt_Stopwatch/Client.h
index 45162e4daf3..f2cecb0a0a1 100644
--- a/tests/Xt_Stopwatch/Client.h
+++ b/tests/Xt_Stopwatch/Client.h
@@ -1,17 +1,14 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/Xt_Stopwatch/Stopwatch_client
-//
-// = FILENAME
-// Client.h
-//
-// = AUTHOR
-// Balachandran Natarajan <bala@cs.wustl.edu>
-//
-// ============================================================================
+
+//=============================================================================
+/**
+ * @file Client.h
+ *
+ * $Id$
+ *
+ * @author Balachandran Natarajan <bala@cs.wustl.edu>
+ */
+//=============================================================================
+
#ifndef CLIENT_H
#define CLIENT_H
@@ -26,35 +23,35 @@ class Client
{
public:
+ /// ctor
Client (CORBA::ORB_ptr orb);
- // ctor
+ ///Dtor..
~Client (void);
- //Dtor..
+ /// The callbacks
static void start_callback (Widget w,
XtPointer client_data,
XtPointer call_data);
static void stop_callback (Widget w,
XtPointer client_data,
XtPointer call_data);
- // The callbacks
+ /// The hooks...
void start_hook (void);
void stop_hook (void);
- // The hooks...
+ /// Adds the callbacks to the GUI underneath.....
void add_callback (Control &);
- // Adds the callbacks to the GUI underneath.....
void parse_args (int argc, ACE_TCHAR *argv[]);
private:
+ /// The ORB
CORBA::ORB_var orb_;
- // The ORB
+ /// The server.
Stopwatch_var server_;
- // The server.
};
#endif /* CLIENT_H */