summaryrefslogtreecommitdiff
path: root/TAO/tests/Xt_Stopwatch/Control.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Xt_Stopwatch/Control.h')
-rw-r--r--TAO/tests/Xt_Stopwatch/Control.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/TAO/tests/Xt_Stopwatch/Control.h b/TAO/tests/Xt_Stopwatch/Control.h
deleted file mode 100644
index be71ef024fe..00000000000
--- a/TAO/tests/Xt_Stopwatch/Control.h
+++ /dev/null
@@ -1,59 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/Xt_Stopwatch/Stopwatch_client
-//
-// = FILENAME
-// Control.h
-//
-// = AUTHOR
-// Balachandran Natarajan <bala@cs.wustl.edu>
-//
-// ============================================================================
-
-#ifndef CONTROL_H
-#define CONTROL_H
-#include <Xm/Xm.h>
-#include <Xm/PushB.h>
-#include <Xm/Label.h>
-#include <Xm/RowColumn.h>
-#include <Xm/Frame.h>
-#include "Client.h"
-
-class Control
-{
- public:
- Control (Widget &parent);
- // Stopwatch constructor
-
- virtual ~Control (void);
- // Destructor
-
- virtual void manage (void);
- // Manage the widget
-
- Widget& startwidget (void);
- // Return the start widget
-
- Widget& stopwidget (void);
- // Return the stop widget..
-
- private:
-
- Widget frame_;
- // A frame widget...
-
- Widget rowcolumn_;
- // A row column widget..
-
- Widget startwidget_;
- // Pushbutton Widget that is used to start the timer..
-
- Widget stopwidget_;
- // Pushbutton widget that is used to stop the timer..
-
-};
-
-#endif /* CONTROL_H */