summaryrefslogtreecommitdiff
path: root/TAO/tests/Xt_Stopwatch/Control.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Xt_Stopwatch/Control.cpp')
-rw-r--r--TAO/tests/Xt_Stopwatch/Control.cpp53
1 files changed, 0 insertions, 53 deletions
diff --git a/TAO/tests/Xt_Stopwatch/Control.cpp b/TAO/tests/Xt_Stopwatch/Control.cpp
deleted file mode 100644
index 4d81ac985c8..00000000000
--- a/TAO/tests/Xt_Stopwatch/Control.cpp
+++ /dev/null
@@ -1,53 +0,0 @@
-// $Id$
-#include "Control.h"
-
-Control::Control (Widget &parent)
-{
- // Instantiate the sub-components of the Control
- this->frame_ = XmCreateFrame (parent,
- "frame",
- 0,
- 0 );
-
- this->rowcolumn_ = XmCreateRowColumn (this->frame_,
- "rwc",
- 0,
- 0 );
-
- this->startwidget_ = XmCreatePushButton (this->rowcolumn_,
- "Start",
- 0,
- 0);
-
- this->stopwidget_ = XmCreatePushButton (this->rowcolumn_,
- "Stop",
- 0,
- 0);
-}
-
-Control::~Control (void)
-{
-}
-
-void
-Control::manage (void)
-{
- XtManageChild (frame_);
- XtManageChild (rowcolumn_);
- XtManageChild (startwidget_);
- XtManageChild (stopwidget_);
-}
-
-Widget &
-Control::startwidget (void)
-{
- return this->startwidget_;
-}
-
-Widget &
-Control::stopwidget (void)
-{
- return this->stopwidget_;
-}
-
-