X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_IViewWindow.h;h=597d884a35c9596accb00dc3337b37efbec19374;hb=5446f2f59af5cb087347b8b83ef830e2d69128dd;hp=abf938d3bf56d9ba3dcdb6713d8aca1aa78c2a7a;hpb=38afbd899a8645c83e17f2c24a17a2b7414911b4;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_IViewWindow.h b/src/ModuleBase/ModuleBase_IViewWindow.h index abf938d3b..597d884a3 100644 --- a/src/ModuleBase/ModuleBase_IViewWindow.h +++ b/src/ModuleBase/ModuleBase_IViewWindow.h @@ -1,21 +1,31 @@ // Copyright (C) 2014-20xx CEA/DEN, EDF R&D - - #ifndef ModuleBase_IViewWindow_H #define ModuleBase_IViewWindow_H +#include "ModuleBase.h" + #include +class QWidget; /** +* \ingroup GUI * Interface to ViewWindow object which contains 3d scene */ -class ModuleBase_IViewWindow +class MODULEBASE_EXPORT ModuleBase_IViewWindow { public: + /// Default constructor + ModuleBase_IViewWindow(); + /// Virtual destructor + virtual ~ModuleBase_IViewWindow(); + /// Returns OCCT object which contains 3d view object virtual Handle(V3d_View) v3dView() const = 0; + + /// Returns the view window view port + virtual QWidget* viewPort() const = 0; };