Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / tests / QtTests / test_i.h
blob562ba8595c56389a57ae2816fc6b9827f9c4a92a
1 //=============================================================================
2 /**
3 * @file test_i.h
5 * @author Bala Natarajan <bala@cs.wustl.edu>
6 */
7 //=============================================================================
10 #ifndef _QT_TEST_I_H
11 #define _QT_TEST_I_H
13 #include "testS.h"
15 #include <QtGui/qapplication.h>
16 #include <QtCore/qobject.h>
18 class LCD_Display_imp : public QObject,
19 public POA_LCD_Display
22 /**
23 * = TITLE
24 * LCD_Display implementation class
26 * = DESCRIPTION
27 * Implements the LCD_Display interface in test.idl
30 Q_OBJECT
31 public:
32 LCD_Display_imp (CORBA::ORB_ptr);
34 // ctor
36 void shutdown ();
38 void send_val (CORBA::Long val);
40 signals:
41 void set_value (int val);
43 private:
44 /// The ORB
45 CORBA::ORB_var orb_;
48 #endif /* SERVER_TEST_I_H */