summaryrefslogtreecommitdiff
path: root/TAO/tests/Xt_Stopwatch/Client.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Xt_Stopwatch/Client.h')
-rw-r--r--TAO/tests/Xt_Stopwatch/Client.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/TAO/tests/Xt_Stopwatch/Client.h b/TAO/tests/Xt_Stopwatch/Client.h
deleted file mode 100644
index 2f4b4c0628a..00000000000
--- a/TAO/tests/Xt_Stopwatch/Client.h
+++ /dev/null
@@ -1,59 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/Xt_Stopwatch/Stopwatch_client
-//
-// = FILENAME
-// Client.h
-//
-// = AUTHOR
-// Balachandran Natarajan <bala@cs.wustl.edu>
-//
-// ============================================================================
-
-#ifndef CLIENT_H
-#define CLIENT_H
-
-#include "testC.h"
-
-class Control;
-
-class Client
-{
-public:
-
- Client (CORBA::ORB_ptr orb);
- // ctor
-
- ~Client (void);
- //Dtor..
-
- static void start_callback (Widget w,
- XtPointer client_data,
- XtPointer call_data);
- static void stop_callback (Widget w,
- XtPointer client_data,
- XtPointer call_data);
- // The callbacks
-
- void start_hook (void);
- void stop_hook (void);
- // The hooks...
-
- void add_callback (Control &);
- // Adds the callbacks to the GUI underneath.....
-
- void parse_args (int argc, char *argv[],
- CORBA::Environment &ACE_TRY_ENV);
-private:
-
- CORBA::ORB_var orb_;
- // The ORB
-
- Stopwatch_var server_;
- // The server.
-};
-
-#endif /* CLIENT_H */