0027104: DownCast() cannot return null for mismatched handle
[occt.git] / src / IGESSelect / IGESSelect_SelectSubordinate.hxx
1 // Created on: 1996-10-11
2 // Created by: Christian CAILLET
3 // Copyright (c) 1996-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 _IGESSelect_SelectSubordinate_HeaderFile
18 #define _IGESSelect_SelectSubordinate_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_Type.hxx>
22
23 #include <Standard_Integer.hxx>
24 #include <IFSelect_SelectExtract.hxx>
25 #include <Standard_Boolean.hxx>
26 class Standard_Transient;
27 class Interface_InterfaceModel;
28 class TCollection_AsciiString;
29
30
31 class IGESSelect_SelectSubordinate;
32 DEFINE_STANDARD_HANDLE(IGESSelect_SelectSubordinate, IFSelect_SelectExtract)
33
34 //! This selections uses Subordinate Status as sort criterium
35 //! It is an integer number which can be :
36 //! 0 Independant
37 //! 1 Physically Dependant
38 //! 2 Logically Dependant
39 //! 3 Both (recorded)
40 //! + to sort :
41 //! 4 : 1 or 3  ->  at least Physically
42 //! 5 : 2 or 3  ->  at least Logically
43 //! 6 : 1 or 2 or 3 -> any kind of dependance
44 //! (corresponds to 0 reversed)
45 class IGESSelect_SelectSubordinate : public IFSelect_SelectExtract
46 {
47
48 public:
49
50   
51   //! Creates a SelectSubordinate with a status to be sorted
52   Standard_EXPORT IGESSelect_SelectSubordinate(const Standard_Integer status);
53   
54   //! Returns the status used for sorting
55   Standard_EXPORT Standard_Integer Status() const;
56   
57   //! Returns True if <ent> is an IGES Entity with Subordinate
58   //! Status matching the criterium
59   Standard_EXPORT Standard_Boolean Sort (const Standard_Integer rank, const Handle(Standard_Transient)& ent, const Handle(Interface_InterfaceModel)& model) const Standard_OVERRIDE;
60   
61   //! Returns the Selection criterium : "IGES Entity, Independant"
62   //! etc...
63   Standard_EXPORT TCollection_AsciiString ExtractLabel() const Standard_OVERRIDE;
64
65
66
67
68   DEFINE_STANDARD_RTTIEXT(IGESSelect_SelectSubordinate,IFSelect_SelectExtract)
69
70 protected:
71
72
73
74
75 private:
76
77
78   Standard_Integer thestatus;
79
80
81 };
82
83
84
85
86
87
88
89 #endif // _IGESSelect_SelectSubordinate_HeaderFile