summaryrefslogtreecommitdiff
path: root/tests/Xt_Stopwatch/Stopwatch_display.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Xt_Stopwatch/Stopwatch_display.h')
-rw-r--r--tests/Xt_Stopwatch/Stopwatch_display.h36
1 files changed, 16 insertions, 20 deletions
diff --git a/tests/Xt_Stopwatch/Stopwatch_display.h b/tests/Xt_Stopwatch/Stopwatch_display.h
index 984d90b4d35..9c5cfc6fd24 100644
--- a/tests/Xt_Stopwatch/Stopwatch_display.h
+++ b/tests/Xt_Stopwatch/Stopwatch_display.h
@@ -1,17 +1,13 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/Xt_Stopwatch/Stopwatch_server
-//
-// = FILENAME
-// Stopwatch.h
-//
-// = AUTHOR
-// Balachandran Natarajan <bala@cs.wustl.edu>
-//
-// ============================================================================
+
+//=============================================================================
+/**
+ * @file Stopwatch_display.h
+ *
+ * $Id$
+ *
+ * @author Balachandran Natarajan <bala@cs.wustl.edu>
+ */
+//=============================================================================
#ifndef STOPWATCH_H
#define STOPWATCH_H
@@ -26,24 +22,24 @@ class Stopwatch_display
{
public:
+ /// Stopwatch_display constructor
Stopwatch_display (Widget &parent);
- // Stopwatch_display constructor
+ /// Destructor
virtual ~Stopwatch_display (void);
- // Destructor
+ /// Manage the widget
virtual void manage (void);
- // Manage the widget
+ /// Change the displayed time
void set_time (CORBA::Float value);
- // Change the displayed time
private:
+ /// A frame widget...
Widget frame_;
- // A frame widget...
+ /// Label Widget that is used to display time..
Widget label_;
- // Label Widget that is used to display time..
};