Salome HOME
Issue #273: Add copyright string
[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 * Interface to ViewWindow object which contains 3d scene
13 */
14 class ModuleBase_IViewWindow
15 {
16 public:
17   /// Returns OCCT object which contains 3d view object
18   virtual Handle(V3d_View) v3dView() const = 0;
19 };
20
21
22 #endif