0031939: Coding - correction of spelling errors in comments
[occt.git] / src / IFSelect / IFSelect_SelectType.hxx
1 // Created on: 1992-11-18
2 // Created by: Christian CAILLET
3 // Copyright (c) 1992-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #ifndef _IFSelect_SelectType_HeaderFile
18 #define _IFSelect_SelectType_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_Type.hxx>
22
23 #include <Standard_Type.hxx>
24 #include <IFSelect_SelectAnyType.hxx>
25 class TCollection_AsciiString;
26
27
28 class IFSelect_SelectType;
29 DEFINE_STANDARD_HANDLE(IFSelect_SelectType, IFSelect_SelectAnyType)
30
31 //! A SelectType keeps or rejects Entities of which the Type
32 //! is Kind of a given Cdl Type
33 class IFSelect_SelectType : public IFSelect_SelectAnyType
34 {
35
36 public:
37
38   
39   //! Creates a SelectType. Default is no filter
40   Standard_EXPORT IFSelect_SelectType();
41   
42   //! Creates a SelectType for a given Type
43   Standard_EXPORT IFSelect_SelectType(const Handle(Standard_Type)& atype);
44   
45   //! Sets a TYpe for filter
46   Standard_EXPORT void SetType (const Handle(Standard_Type)& atype);
47   
48   //! Returns the Type to be matched for select : this is the type
49   //! given at instantiation time
50   Standard_EXPORT Handle(Standard_Type) TypeForMatch() const Standard_OVERRIDE;
51   
52   //! Returns a text defining the criterium.
53   //! (should by gotten from Type of Entity used for instantiation)
54   Standard_EXPORT TCollection_AsciiString ExtractLabel() const Standard_OVERRIDE;
55
56
57
58
59   DEFINE_STANDARD_RTTIEXT(IFSelect_SelectType,IFSelect_SelectAnyType)
60
61 protected:
62
63
64
65
66 private:
67
68
69   Handle(Standard_Type) thetype;
70
71
72 };
73
74
75
76
77
78
79
80 #endif // _IFSelect_SelectType_HeaderFile