summaryrefslogtreecommitdiff
path: root/TAO/tests/Xt_Stopwatch/Stopwatch_display.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Xt_Stopwatch/Stopwatch_display.h')
-rw-r--r--TAO/tests/Xt_Stopwatch/Stopwatch_display.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/TAO/tests/Xt_Stopwatch/Stopwatch_display.h b/TAO/tests/Xt_Stopwatch/Stopwatch_display.h
deleted file mode 100644
index 4e55d87b384..00000000000
--- a/TAO/tests/Xt_Stopwatch/Stopwatch_display.h
+++ /dev/null
@@ -1,47 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/Xt_Stopwatch/Stopwatch_server
-//
-// = FILENAME
-// Stopwatch.h
-//
-// = AUTHOR
-// Balachandran Natarajan <bala@cs.wustl.edu>
-//
-// ============================================================================
-
-#ifndef STOPWATCH_H
-#define STOPWATCH_H
-#include "tao/corba.h"
-#include <Xm/Xm.h>
-#include <Xm/Frame.h>
-#include <Xm/Label.h>
-
-class Stopwatch_display
-{
-public:
-
- Stopwatch_display (Widget &parent);
- // Stopwatch_display constructor
-
- virtual ~Stopwatch_display (void);
- // Destructor
-
- virtual void manage (void);
- // Manage the widget
-
- void set_time (CORBA::Float value);
- // Change the displayed time
-
-private:
- Widget frame_;
- // A frame widget...
-
- Widget label_;
- // Label Widget that is used to display time..
-};
-
-#endif /* STOPWATCH_H */