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
27 Client (CORBA::ORB_ptr orb
,
33 /// Adds the callbacks to the GUI underneath.....
34 void create_widgets (void);
38 void parse_args (int argc
, ACE_TCHAR
*argv
[]);
45 /// Two slot handlers for the two widgets that we have
46 void remote_call (int val
);
47 void shutdown_call (void);
52 QPushButton
*push_button_
;
60 LCD_Display_var server_
;
65 #endif /* _QT_CLIENT_H */