#include "SALOME_InteractiveObject.hxx"
#include "SALOME_ListIO.hxx"
+#include "SALOME_ListIteratorOfListIO.hxx"
#include <TColStd_MapOfTransient.hxx>
}
return false;
}
+
+ private:
+ TIsInList( const TIsInList<TActor>& ) {}
};
using namespace SVTK;
SVTK_Selector* aSelector = myMainWindow->GetSelector();
const SALOME_ListIO& aListIO = aSelector->StoredIObjects();
+ TIsInList<SALOME_Actor> aPredicate(aListIO);
ForEachIfElse<SALOME_Actor>(anActors,
- TIsInList<SALOME_Actor>(aListIO),
+ aPredicate,
THighlightAction(true),
THighlightAction(false));