summaryrefslogtreecommitdiff
path: root/tests/Xt_Stopwatch/test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Xt_Stopwatch/test_i.h')
-rw-r--r--tests/Xt_Stopwatch/test_i.h44
1 files changed, 21 insertions, 23 deletions
diff --git a/tests/Xt_Stopwatch/test_i.h b/tests/Xt_Stopwatch/test_i.h
index 539a82b16e0..10135d3652e 100644
--- a/tests/Xt_Stopwatch/test_i.h
+++ b/tests/Xt_Stopwatch/test_i.h
@@ -1,17 +1,14 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/Xt_Stopwatch
-//
-// = FILENAME
-// test_i.h
-//
-// = AUTHOR
-// Bala
-//
-// ============================================================================
+
+//=============================================================================
+/**
+ * @file test_i.h
+ *
+ * $Id$
+ *
+ * @author Bala
+ */
+//=============================================================================
+
#ifndef SERVER_TEST_I_H
#define SERVER_TEST_I_H
@@ -20,17 +17,18 @@
#include "timer.h"
+/**
+ * @class Stopwatch_imp
+ *
+ * @brief Stopwatch implementation class
+ *
+ * Implements the Stopwatch interface in test.idl
+ */
class Stopwatch_imp : public POA_Stopwatch
{
- // = TITLE
- // Stopwatch implementation class
- //
- // = DESCRIPTION
- // Implements the Stopwatch interface in test.idl
- //
public:
+ /// ctor
Stopwatch_imp (CORBA::ORB_ptr, Timer_imp *);
- // ctor
// = The Simple_Server methods.
void start (void);
@@ -40,11 +38,11 @@ public:
void shutdown (void);
private:
+ /// The ORB
CORBA::ORB_var orb_;
- // The ORB
+ /// Hold the timer object...
Timer_imp *timer_;
- // Hold the timer object...
};
#endif /* SERVER_TEST_I_H */