summaryrefslogtreecommitdiff
path: root/tests/QtTests/test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtTests/test_i.h')
-rw-r--r--tests/QtTests/test_i.h43
1 files changed, 21 insertions, 22 deletions
diff --git a/tests/QtTests/test_i.h b/tests/QtTests/test_i.h
index f1d517adfa8..193e6e5655e 100644
--- a/tests/QtTests/test_i.h
+++ b/tests/QtTests/test_i.h
@@ -1,36 +1,35 @@
-// $Id$
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/QtTests
-//
-// = FILENAME
-// test_i.h
-//
-// = AUTHOR
-// Bala Natarajan <bala@cs.wustl.edu>
-//
-// ============================================================================
+//=============================================================================
+/**
+ * @file test_i.h
+ *
+ * $Id$
+ *
+ * @author Bala Natarajan <bala@cs.wustl.edu>
+ */
+//=============================================================================
+
#ifndef _QT_TEST_I_H
#define _QT_TEST_I_H
#include "testS.h"
-#include <qapplication.h>
-#include <qobject.h>
+#include <QtGui/qapplication.h>
+#include <QtCore/qobject.h>
class LCD_Display_imp : public QObject,
public POA_LCD_Display
{
+ /**
+ * = TITLE
+ * LCD_Display implementation class
+ *
+ * = DESCRIPTION
+ * Implements the LCD_Display interface in test.idl
+ *
+ */
Q_OBJECT
- // = TITLE
- // LCD_Display implementation class
- //
- // = DESCRIPTION
- // Implements the LCD_Display interface in test.idl
- //
public:
LCD_Display_imp (CORBA::ORB_ptr);
@@ -44,8 +43,8 @@ public:
void set_value (int val);
private:
+ /// The ORB
CORBA::ORB_var orb_;
- // The ORB
};
#endif /* SERVER_TEST_I_H */