Salome HOME
Merge branch 'Dev_0.6' of newgeom:newgeom into Dev_0.6
[modules/shaper.git] / src / ModuleBase / ModuleBase_IViewWindow.h
1
2
3 #ifndef ModuleBase_IViewWindow_H
4 #define ModuleBase_IViewWindow_H
5
6 #include <V3d_View.hxx>
7
8
9 /** 
10 * Interface to ViewWindow object which contains 3d scene
11 */
12 class ModuleBase_IViewWindow
13 {
14 public:
15   /// Returns OCCT object which contains 3d view object
16   virtual Handle(V3d_View) v3dView() const = 0;
17 };
18
19
20 #endif