Salome HOME
It removes SketchShapePlugin from plugins
[modules/shaper.git] / src / ModuleBase / ModuleBase_ViewerPrs.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModuleBase_ViewerPrs.cpp
4 // Created:     20 Apr 2014
5 // Author:      Natalia ERMOLAEVA
6
7 #include "ModuleBase_ViewerPrs.h"
8
9 ModuleBase_ViewerPrs::ModuleBase_ViewerPrs()
10 {
11
12 }
13
14 ModuleBase_ViewerPrs::ModuleBase_ViewerPrs(ObjectPtr theResult, 
15                                            const TopoDS_Shape& theShape, 
16                                            Handle_SelectMgr_EntityOwner theOwner) 
17 : myResult(theResult),
18   myShape(theShape),
19   myOwner(theOwner)
20 {
21
22 }
23
24 ModuleBase_ViewerPrs::~ModuleBase_ViewerPrs()
25 {
26
27 }