Salome HOME
Issue #189: Close document on study close.
[modules/shaper.git] / src / NewGeom / NewGeom_OCCSelector.cpp
1 #include "NewGeom_OCCSelector.h"
2
3 NewGeom_OCCSelector::NewGeom_OCCSelector(OCCViewer_Viewer* theViewer, SUIT_SelectionMgr* theMgr)
4     : LightApp_OCCSelector(theViewer, theMgr)
5 {
6 }
7
8 NewGeom_OCCSelector::~NewGeom_OCCSelector()
9 {
10 }
11
12 void NewGeom_OCCSelector::getSelection(SUIT_DataOwnerPtrList& thePtrList) const
13 {
14   OCCViewer_Viewer* vw = viewer();
15   if (!vw)
16     return;
17 }
18
19 void NewGeom_OCCSelector::setSelection(const SUIT_DataOwnerPtrList& thePtrList)
20 {
21   OCCViewer_Viewer* vw = viewer();
22   if (!vw)
23     return;
24
25 }