blob: 55db28c29f894abfc7fc1d8a3b4ffbb47ae2359f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include <IFSelect_SelectType.ixx>
IFSelect_SelectType::IFSelect_SelectType ()
{ thetype = STANDARD_TYPE(Standard_Transient); }
IFSelect_SelectType::IFSelect_SelectType (const Handle(Standard_Type)& atype)
{ thetype = atype; }
void IFSelect_SelectType::SetType (const Handle(Standard_Type)& atype)
{ thetype = atype; }
Handle(Standard_Type) IFSelect_SelectType::TypeForMatch () const
{ return thetype; }
TCollection_AsciiString IFSelect_SelectType::ExtractLabel () const
{ return TCollection_AsciiString(thetype->Name()); }
|