0026689: Necessary to improve STEPCAFControl_Reader to read GD&T data from STEP model...
[occt.git] / src / StepShape / StepShape_ValueQualifier.cxx
1 // Copyright (c) 1999-2014 OPEN CASCADE SAS
2 //
3 // This file is part of Open CASCADE Technology software library.
4 //
5 // This library is free software; you can redistribute it and/or modify it under
6 // the terms of the GNU Lesser General Public License version 2.1 as published
7 // by the Free Software Foundation, with special exception defined in the file
8 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9 // distribution for complete text of the license and disclaimer of any warranty.
10 //
11 // Alternatively, this file may be used under the terms of Open CASCADE
12 // commercial license or contractual agreement.
13
14
15 #include <Standard_Transient.hxx>
16 #include <StepShape_PrecisionQualifier.hxx>
17 #include <StepShape_TypeQualifier.hxx>
18 #include <StepShape_ValueFormatTypeQualifier.hxx>
19 #include <StepShape_ValueQualifier.hxx>
20
21 StepShape_ValueQualifier::StepShape_ValueQualifier  ()    {  }
22
23 Standard_Integer  StepShape_ValueQualifier::CaseNum
24   (const Handle(Standard_Transient)& ent) const
25 {
26   if (ent.IsNull()) return 0;
27   if (ent->IsKind(STANDARD_TYPE(StepShape_PrecisionQualifier))) return 1;
28   if (ent->IsKind(STANDARD_TYPE(StepShape_TypeQualifier))) return 2;
29   return 0;
30 }
31
32 Handle(StepShape_PrecisionQualifier)  StepShape_ValueQualifier::PrecisionQualifier () const
33 {  return Handle(StepShape_PrecisionQualifier)::DownCast(Value());  }
34
35 Handle(StepShape_TypeQualifier)  StepShape_ValueQualifier::TypeQualifier () const
36 {  return Handle(StepShape_TypeQualifier)::DownCast(Value());  }
37
38 Handle(StepShape_ValueFormatTypeQualifier)  StepShape_ValueQualifier::ValueFormatTypeQualifier () const
39 {  return Handle(StepShape_ValueFormatTypeQualifier)::DownCast(Value());  }