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.h55
1 files changed, 0 insertions, 55 deletions
diff --git a/TAO/tests/Xt_Stopwatch/Stopwatch_display.h b/TAO/tests/Xt_Stopwatch/Stopwatch_display.h
deleted file mode 100644
index 1224c80ea69..00000000000
--- a/TAO/tests/Xt_Stopwatch/Stopwatch_display.h
+++ /dev/null
@@ -1,55 +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
-{
- // friend Control; // Let Control call protected Stopwatch_display functions
-
- public:
-
- Stopwatch_display (Widget &parent);
- // Stopwatch_display constructor
-
- virtual ~Stopwatch_display();
- // Destructor
-
- virtual void manage();
- // Manage the widget
-
- void set_time (CORBA::Float value);
- // Change the displayed time
-
- //virtual void unmanage();
-
- // Unmanage the widget
-
- private:
- Widget frame_;
- // A frame widget...
- Widget label_;
- // Label Widget that is used to display time..
-
- protected:
-
- // virtual void timerStarted(); // Subclass hooks called when
- //virtual void timerStopped(); // timer starts and stops
- //float elapsedTime() { return _timer->elapsedTime(); }
-};
-#endif