1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
// This file is generated by WOK (CPPExt).
// Please do not edit this file; modify original file instead.
// The copyright and license terms as defined for the original file apply to
// this header file considered to be the "object code" form of the original source.
#ifndef _IFSelect_SelectType_HeaderFile
#define _IFSelect_SelectType_HeaderFile
#include <Standard.hxx>
#include <Standard_DefineHandle.hxx>
#include <Handle_IFSelect_SelectType.hxx>
#include <Handle_Standard_Type.hxx>
#include <IFSelect_SelectAnyType.hxx>
class Standard_Type;
class TCollection_AsciiString;
//! A SelectType keeps or rejects Entities of which the Type
//! is Kind of a given Cdl Type
class IFSelect_SelectType : public IFSelect_SelectAnyType
{
public:
//! Creates a SelectType. Default is no filter
Standard_EXPORT IFSelect_SelectType();
//! Creates a SelectType for a given Type
Standard_EXPORT IFSelect_SelectType(const Handle(Standard_Type)& atype);
//! Sets a TYpe for filter
Standard_EXPORT void SetType (const Handle(Standard_Type)& atype) ;
//! Returns the Type to be matched for select : this is the type
//! given at instantiation time
Standard_EXPORT Handle(Standard_Type) TypeForMatch() const;
//! Returns a text defining the criterium.
//! (should by gotten from Type of Entity used for instantiation)
Standard_EXPORT TCollection_AsciiString ExtractLabel() const;
DEFINE_STANDARD_RTTI(IFSelect_SelectType)
protected:
private:
Handle(Standard_Type) thetype;
};
#endif // _IFSelect_SelectType_HeaderFile
|