blob: a710000bf7beabfd0d36c7199b4bfe1a43a9efba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <IFSelect_SelectModelEntities.ixx>
#include <Interface_InterfaceModel.hxx>
IFSelect_SelectModelEntities::IFSelect_SelectModelEntities () { }
Interface_EntityIterator IFSelect_SelectModelEntities::RootResult
(const Interface_Graph& G) const
{ return G.Model()->Entities(); }
Interface_EntityIterator IFSelect_SelectModelEntities::CompleteResult
(const Interface_Graph& G) const
{ return G.Model()->Entities(); }
TCollection_AsciiString IFSelect_SelectModelEntities::Label () const
{ return TCollection_AsciiString("All Entities from Model"); }
|