]> SALOME platform Git repositories - modules/shaper.git/blob - src/ModuleBase/ModuleBase_IViewWindow.h
Salome HOME
fcf763e4424f706c3fbd7a8357e13c95b556c452
[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