Salome HOME
Increment version: 8.3.0
[modules/gui.git] / src / SUITApp / SUITApp_Application.h
index fb3cbb386b28bedae86d415fc350792fcb31a061..2941f9cdc1552a191ed04437141830e0512923be 100644 (file)
 #ifndef SUITAPP_APPLICATION_H
 #define SUITAPP_APPLICATION_H
 
-#ifdef ENABLE_TESTRECORDER
-  #include <TestApplication.h>
-#else
-  #include <QApplication>
-#endif
+#include <QApplication>
 
 class SUIT_ExceptionHandler;
 
@@ -41,22 +37,20 @@ class SUIT_ExceptionHandler;
 #  define SUITAPP_EXPORT
 #endif
 
-#ifdef ENABLE_TESTRECORDER
-  class SUITAPP_EXPORT SUITApp_Application : public TestApplication
-#else
-  class SUITAPP_EXPORT SUITApp_Application : public QApplication
-#endif
+class SUITAPP_EXPORT SUITApp_Application : public QApplication
 {
   Q_OBJECT
 
 public:
-  SUITApp_Application( int& argc, char** argv, SUIT_ExceptionHandler* = 0 );
-  SUITApp_Application( int& argc, char** argv, Type type, SUIT_ExceptionHandler* = 0 );
-
+  SUITApp_Application( int&, char**, SUIT_ExceptionHandler* = 0 );
+// TODO (QT5 PORTING) Below is a temporary solution, to allow compiling with Qt 5
+#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
+  SUITApp_Application( int&, char**, Type, SUIT_ExceptionHandler* = 0 );
+#endif
   virtual bool notify( QObject* receiver, QEvent* e );
 
-        SUIT_ExceptionHandler* handler() const;
-        void                   setHandler( SUIT_ExceptionHandler* );
+  SUIT_ExceptionHandler* handler() const;
+  void                   setHandler( SUIT_ExceptionHandler* );
 
 private:
   SUIT_ExceptionHandler* myExceptHandler;