1 // Created on: 2015-07-10
2 // Created by: Irina KRYLOVA
3 // Copyright (c) 2015 OPEN CASCADE SAS
5 // This file is part of Open CASCADE Technology software library.
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
16 #include <StepVisual_DraughtingCalloutElement.hxx>
17 #include <Interface_Macros.hxx>
18 #include <StepVisual_AnnotationCurveOccurrence.hxx>
19 #include <StepVisual_AnnotationFillAreaOccurrence.hxx>
20 #include <StepVisual_AnnotationTextOccurrence.hxx>
21 #include <StepVisual_TessellatedAnnotationOccurrence.hxx>
23 //=======================================================================
24 //function : StepVisual_DraughtingCalloutElement
26 //=======================================================================
28 StepVisual_DraughtingCalloutElement::StepVisual_DraughtingCalloutElement () { }
30 //=======================================================================
33 //=======================================================================
35 Standard_Integer StepVisual_DraughtingCalloutElement::CaseNum(const Handle(Standard_Transient)& ent) const
37 if (ent.IsNull()) return 0;
38 if (ent->IsKind(STANDARD_TYPE(StepVisual_AnnotationCurveOccurrence))) return 1;
39 if (ent->IsKind(STANDARD_TYPE(StepVisual_AnnotationTextOccurrence))) return 2;
40 if (ent->IsKind(STANDARD_TYPE(StepVisual_TessellatedAnnotationOccurrence))) return 3;
41 if (ent->IsKind(STANDARD_TYPE(StepVisual_AnnotationFillAreaOccurrence))) return 4;
45 Handle(StepVisual_AnnotationCurveOccurrence) StepVisual_DraughtingCalloutElement::AnnotationCurveOccurrence() const
46 { return GetCasted(StepVisual_AnnotationCurveOccurrence,Value()); }
48 Handle(StepVisual_TessellatedAnnotationOccurrence) StepVisual_DraughtingCalloutElement::TessellatedAnnotationOccurrence() const
49 { return GetCasted(StepVisual_TessellatedAnnotationOccurrence,Value()); }
51 Handle(StepVisual_AnnotationTextOccurrence) StepVisual_DraughtingCalloutElement::AnnotationTextOccurrence() const
52 { return GetCasted(StepVisual_AnnotationTextOccurrence, Value()); }
54 Handle(StepVisual_AnnotationFillAreaOccurrence) StepVisual_DraughtingCalloutElement::AnnotationFillAreaOccurrence() const
55 { return GetCasted(StepVisual_AnnotationFillAreaOccurrence, Value()); }