Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / QtTests / test_i.h
blob055d2438111f6642a5b95f0027c12e8bc0dc47f4
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 (void);
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 */