0027104: DownCast() cannot return null for mismatched handle
[occt.git] / src / IGESAppli / IGESAppli_Protocol.cxx
CommitLineData
973c2be1 1// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 2//
973c2be1 3// This file is part of Open CASCADE Technology software library.
b311480e 4//
d5f74e42 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
973c2be1 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.
b311480e 10//
973c2be1 11// Alternatively, this file may be used under the terms of Open CASCADE
12// commercial license or contractual agreement.
b311480e 13
7fd59977 14
42cf5bc1 15#include <IGESAppli_DrilledHole.hxx>
7fd59977 16#include <IGESAppli_ElementResults.hxx>
42cf5bc1 17#include <IGESAppli_FiniteElement.hxx>
7fd59977 18#include <IGESAppli_Flow.hxx>
42cf5bc1 19#include <IGESAppli_FlowLineSpec.hxx>
7fd59977 20#include <IGESAppli_LevelFunction.hxx>
42cf5bc1 21#include <IGESAppli_LevelToPWBLayerMap.hxx>
7fd59977 22#include <IGESAppli_LineWidening.hxx>
42cf5bc1 23#include <IGESAppli_NodalConstraint.hxx>
24#include <IGESAppli_NodalDisplAndRot.hxx>
25#include <IGESAppli_NodalResults.hxx>
26#include <IGESAppli_Node.hxx>
7fd59977 27#include <IGESAppli_PartNumber.hxx>
42cf5bc1 28#include <IGESAppli_PinNumber.hxx>
29#include <IGESAppli_PipingFlow.hxx>
30#include <IGESAppli_Protocol.hxx>
7fd59977 31#include <IGESAppli_PWBArtworkStackup.hxx>
32#include <IGESAppli_PWBDrilledHole.hxx>
42cf5bc1 33#include <IGESAppli_ReferenceDesignator.hxx>
34#include <IGESAppli_RegionRestriction.hxx>
7fd59977 35#include <IGESDefs.hxx>
7fd59977 36#include <IGESDefs_Protocol.hxx>
42cf5bc1 37#include <IGESDraw.hxx>
7fd59977 38#include <IGESDraw_Protocol.hxx>
42cf5bc1 39#include <Interface_Protocol.hxx>
40#include <Standard_Type.hxx>
7fd59977 41
92efcf78 42IMPLEMENT_STANDARD_RTTIEXT(IGESAppli_Protocol,IGESData_Protocol)
43
7fd59977 44static int deja = 0;
45static Handle(Standard_Type) atype01,atype02,atype03,atype04,atype05,atype06,
46 atype07,atype08,atype09,atype10,atype11,atype12,atype13,atype14,atype15,
47 atype16,atype17,atype18,atype19;
48
49 IGESAppli_Protocol::IGESAppli_Protocol ()
50{
51 if (deja) return; deja = 1;
52 atype01 = STANDARD_TYPE(IGESAppli_DrilledHole);
53 atype02 = STANDARD_TYPE(IGESAppli_ElementResults);
54 atype03 = STANDARD_TYPE(IGESAppli_FiniteElement);
55 atype04 = STANDARD_TYPE(IGESAppli_Flow);
56 atype05 = STANDARD_TYPE(IGESAppli_FlowLineSpec);
57 atype06 = STANDARD_TYPE(IGESAppli_LevelFunction);
58 atype07 = STANDARD_TYPE(IGESAppli_LevelToPWBLayerMap);
59 atype08 = STANDARD_TYPE(IGESAppli_LineWidening);
60 atype09 = STANDARD_TYPE(IGESAppli_NodalConstraint);
61 atype10 = STANDARD_TYPE(IGESAppli_NodalDisplAndRot);
62 atype11 = STANDARD_TYPE(IGESAppli_NodalResults);
63 atype12 = STANDARD_TYPE(IGESAppli_Node);
64 atype13 = STANDARD_TYPE(IGESAppli_PWBArtworkStackup);
65 atype14 = STANDARD_TYPE(IGESAppli_PWBDrilledHole);
66 atype15 = STANDARD_TYPE(IGESAppli_PartNumber);
67 atype16 = STANDARD_TYPE(IGESAppli_PinNumber);
68 atype17 = STANDARD_TYPE(IGESAppli_PipingFlow);
69 atype18 = STANDARD_TYPE(IGESAppli_ReferenceDesignator);
70 atype19 = STANDARD_TYPE(IGESAppli_RegionRestriction);
71}
72
73 Standard_Integer IGESAppli_Protocol::NbResources () const
74 { return 2; }
75
76 Handle(Interface_Protocol) IGESAppli_Protocol::Resource
77 (const Standard_Integer num) const
78{
79 Handle(Interface_Protocol) res;
80 if (num == 1) res = IGESDefs::Protocol();
81 if (num == 2) res = IGESDraw::Protocol();
82 return res;
83}
84
85 Standard_Integer IGESAppli_Protocol::TypeNumber
86 (const Handle(Standard_Type)& atype) const
87{
88 if (atype == atype01) return 1;
89 else if (atype == atype02) return 2;
90 else if (atype == atype03) return 3;
91 else if (atype == atype04) return 4;
92 else if (atype == atype05) return 5;
93 else if (atype == atype06) return 6;
94 else if (atype == atype07) return 7;
95 else if (atype == atype08) return 8;
96 else if (atype == atype09) return 9;
97 else if (atype == atype10) return 10;
98 else if (atype == atype11) return 11;
99 else if (atype == atype12) return 12;
100 else if (atype == atype13) return 13;
101 else if (atype == atype14) return 14;
102 else if (atype == atype15) return 15;
103 else if (atype == atype16) return 16;
104 else if (atype == atype17) return 17;
105 else if (atype == atype18) return 18;
106 else if (atype == atype19) return 19;
107 return 0;
108}