Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Xt_Stopwatch / Stopwatch_display.h
blob16b2227b330eb2d29d06e24f54b44bce3bc1e69d
2 //=============================================================================
3 /**
4 * @file Stopwatch_display.h
6 * @author Balachandran Natarajan <bala@cs.wustl.edu>
7 */
8 //=============================================================================
10 #ifndef STOPWATCH_H
11 #define STOPWATCH_H
12 #include /**/ "ace/pre.h"
13 #include "tao/ORB_Constants.h"
15 #include <Xm/Xm.h>
16 #include <Xm/Frame.h>
17 #include <Xm/Label.h>
19 class Stopwatch_display
21 public:
23 /// Stopwatch_display constructor
24 Stopwatch_display (Widget &parent);
26 /// Destructor
27 virtual ~Stopwatch_display (void);
29 /// Manage the widget
30 virtual void manage (void);
32 /// Change the displayed time
33 void set_time (CORBA::Float value);
35 private:
36 /// A frame widget...
37 Widget frame_;
39 /// Label Widget that is used to display time..
40 Widget label_;
44 #include /**/ "ace/post.h"
45 #endif /* STOPWATCH_H */