Salome HOME
Replaced the old execption handler by the new one.
[modules/gui.git] / src / SOCC / SOCC_ViewWindow.h
1 #ifndef SOCC_VIEWWINDOW_H
2 #define SOCC_VIEWWINDOW_H
3
4 #ifdef WIN32
5 #pragma warning( disable:4251 )
6 #endif
7
8 #include "SOCC.h"
9 #include "OCCViewer_ViewWindow.h"
10
11 class SOCC_EXPORT SOCC_ViewWindow : public OCCViewer_ViewWindow
12 {
13   Q_OBJECT;
14
15 public:
16   SOCC_ViewWindow( SUIT_Desktop*, OCCViewer_Viewer* );
17   virtual ~SOCC_ViewWindow();
18   
19 protected:
20   virtual void      action( const int );
21
22 };
23
24 #ifdef WIN32
25 #pragma warning( default:4251 )
26 #endif
27
28 #endif