summaryrefslogtreecommitdiff
path: root/TAO/tests/Xt_Stopwatch/Client.h
blob: d46ed4ca6f1ee5f9dd48da14e089f730e341a7e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53

//=============================================================================
/**
 *  @file   Client.h
 *
 *  @author Balachandran  Natarajan <bala@cs.wustl.edu>
 */
//=============================================================================


#ifndef CLIENT_H
#define CLIENT_H

#include "testC.h"


#include "tao/XtResource/XtResource_Loader.h"
class Control;

class Client
{
public:
  /// ctor
  Client (CORBA::ORB_ptr orb);

  ///Dtor..
  ~Client (void);

  /// The callbacks
  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 hooks...
  void start_hook (void);
  void stop_hook (void);

  /// Adds the callbacks to the GUI underneath.....
  void add_callback (Control &);

  void parse_args (int argc, ACE_TCHAR *argv[]);
private:
  /// The ORB
  CORBA::ORB_var orb_;

  /// The server.
  Stopwatch_var server_;
};

#endif /* CLIENT_H */