ff7bda7498ff93ec7ce5830ae22a43e3ddb5fd80
[occt.git] / src / StepAP214 / StepAP214_ExternalIdentificationItem.cxx
1 // Created on: 2000-05-10
2 // Created by: Andrey BETENEV
3 // Copyright (c) 2000-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
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.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 // Generator:   ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.1
17
18 #include <Standard_Transient.hxx>
19 #include <StepAP214_ExternalIdentificationItem.hxx>
20 #include <StepAP214_ExternallyDefinedClass.hxx>
21 #include <StepAP214_ExternallyDefinedGeneralProperty.hxx>
22 #include <StepBasic_DocumentFile.hxx>
23 #include <StepBasic_ProductDefinition.hxx>
24
25 //=======================================================================
26 //function : StepAP214_ExternalIdentificationItem
27 //purpose  : 
28 //=======================================================================
29 StepAP214_ExternalIdentificationItem::StepAP214_ExternalIdentificationItem ()
30 {
31 }
32
33 //=======================================================================
34 //function : CaseNum
35 //purpose  : 
36 //=======================================================================
37
38 Standard_Integer StepAP214_ExternalIdentificationItem::CaseNum (const Handle(Standard_Transient)& ent) const
39 {
40   if (ent.IsNull()) return 0;
41   if (ent->IsKind(STANDARD_TYPE(StepBasic_DocumentFile))) return 1;
42   if (ent->IsKind(STANDARD_TYPE(StepAP214_ExternallyDefinedClass))) return 2;
43   if (ent->IsKind(STANDARD_TYPE(StepAP214_ExternallyDefinedGeneralProperty))) return 3;
44   if (ent->IsKind(STANDARD_TYPE(StepBasic_ProductDefinition))) return 4;
45   return 0;
46 }
47
48 //=======================================================================
49 //function : DocumentFile
50 //purpose  : 
51 //=======================================================================
52
53 Handle(StepBasic_DocumentFile) StepAP214_ExternalIdentificationItem::DocumentFile () const
54 {
55   return Handle(StepBasic_DocumentFile)::DownCast(Value());
56 }
57
58 //=======================================================================
59 //function : ExternallyDefinedClass
60 //purpose  : 
61 //=======================================================================
62
63 Handle(StepAP214_ExternallyDefinedClass) StepAP214_ExternalIdentificationItem::ExternallyDefinedClass () const
64 {
65   return Handle(StepAP214_ExternallyDefinedClass)::DownCast(Value());
66 }
67
68 //=======================================================================
69 //function : ExternallyDefinedGeneralProperty
70 //purpose  : 
71 //=======================================================================
72
73 Handle(StepAP214_ExternallyDefinedGeneralProperty) StepAP214_ExternalIdentificationItem::ExternallyDefinedGeneralProperty () const
74 {
75   return Handle(StepAP214_ExternallyDefinedGeneralProperty)::DownCast(Value());
76 }
77
78 //=======================================================================
79 //function : ProductDefinition
80 //purpose  : 
81 //=======================================================================
82
83 Handle(StepBasic_ProductDefinition) StepAP214_ExternalIdentificationItem::ProductDefinition () const
84 {
85   return Handle(StepBasic_ProductDefinition)::DownCast(Value());
86 }