Salome HOME
f184b5da7d6ebf95eebd8dc1b3c8c56a34bcb2f6
[modules/hydro.git] / src / HYDRO_tests / TestViewer.h
1
2 #pragma once
3
4 class OCCViewer_ViewManager;
5 class OCCViewer_Viewer;
6 class OCCViewer_ViewWindow;
7 class TopoDS_Shape;
8 class QString;
9
10 class TestViewer
11 {
12 public:
13   static OCCViewer_ViewManager* viewManager();
14   static OCCViewer_Viewer* viewer();
15   static OCCViewer_ViewWindow* viewWindow();
16
17   static void show( const TopoDS_Shape& theShape, bool isFitAll = true );
18   static void dump( const TopoDS_Shape& theShape, const QString& theName );
19
20 private:
21   static OCCViewer_ViewManager* myViewManager;
22   static OCCViewer_ViewWindow* myViewWindow;
23 };