Salome HOME
An interface creation for a separate filter in order to use as a filter the OCC reali...
[modules/shaper.git] / src / PartSet / PartSet_Operation.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        PartSet_Operation.cpp
4 // Created:     24 Nov 2014
5 // Author:      Vitaly SMETANNIKOV
6
7 #include "PartSet_Operation.h"
8
9 #include <ModuleBase_IWorkshop.h>
10 #include <ModuleBase_ISelection.h>
11
12 void PartSet_Operation::onSelectionChanged()
13 {
14   if (isEditOperation()) {
15     ModuleBase_ISelection* aSelection = myWorkshop->selection();
16     QList<ModuleBase_ViewerPrs> aHighlighted = aSelection->getHighlighted();
17     QList<ModuleBase_ViewerPrs> aSelected = aSelection->getSelected();
18   }
19 }