Salome HOME
Fix for selection with 'N' key and update documentation
[modules/shaper.git] / src / ModuleBase / ModuleBase_IViewWindow.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3
4
5 #ifndef ModuleBase_IViewWindow_H
6 #define ModuleBase_IViewWindow_H
7
8 #include <V3d_View.hxx>
9
10
11 /** 
12 * \ingroup GUI
13 * Interface to ViewWindow object which contains 3d scene
14 */
15 class ModuleBase_IViewWindow
16 {
17 public:
18   /// Returns OCCT object which contains 3d view object
19   virtual Handle(V3d_View) v3dView() const = 0;
20 };
21
22
23 #endif