2 //=============================================================================
6 * @author Balachandran Natarajan <bala@cs.wustl.edu>
8 //=============================================================================
16 #include <QtGui/qapplication.h>
17 #include <QtGui/qboxlayout.h>
18 #include <QtGui/qslider.h>
19 #include <QtGui/qpushbutton.h>
21 class Client
: public QObject
26 Client (CORBA::ORB_ptr orb
,
32 /// Adds the callbacks to the GUI underneath.....
33 void create_widgets ();
37 void parse_args (int argc
, ACE_TCHAR
*argv
[]);
44 /// Two slot handlers for the two widgets that we have
45 void remote_call (int val
);
46 void shutdown_call ();
50 QPushButton
*push_button_
;
58 LCD_Display_var server_
;
63 #endif /* _QT_CLIENT_H */