0024002: Overall code and build procedure refactoring -- automatic
[occt.git] / src / StepAP203 / StepAP203_DateTimeItem.hxx
CommitLineData
42cf5bc1 1// Created on: 1999-11-26
2// Created by: Andrey BETENEV
3// Copyright (c) 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 _StepAP203_DateTimeItem_HeaderFile
18#define _StepAP203_DateTimeItem_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_DefineAlloc.hxx>
22#include <Standard_Handle.hxx>
23
24#include <StepData_SelectType.hxx>
25#include <Standard_Integer.hxx>
26class Standard_Transient;
27class StepBasic_ProductDefinition;
28class StepAP203_ChangeRequest;
29class StepAP203_StartRequest;
30class StepAP203_Change;
31class StepAP203_StartWork;
32class StepBasic_ApprovalPersonOrganization;
33class StepBasic_Contract;
34class StepBasic_SecurityClassification;
35class StepBasic_Certification;
36
37
38//! Representation of STEP SELECT type DateTimeItem
39class StepAP203_DateTimeItem : public StepData_SelectType
40{
41public:
42
43 DEFINE_STANDARD_ALLOC
44
45
46 //! Empty constructor
47 Standard_EXPORT StepAP203_DateTimeItem();
48
49 //! Recognizes a kind of DateTimeItem select type
50 //! 1 -> ProductDefinition from StepBasic
51 //! 2 -> ChangeRequest from StepAP203
52 //! 3 -> StartRequest from StepAP203
53 //! 4 -> Change from StepAP203
54 //! 5 -> StartWork from StepAP203
55 //! 6 -> ApprovalPersonOrganization from StepBasic
56 //! 7 -> Contract from StepBasic
57 //! 8 -> SecurityClassification from StepBasic
58 //! 9 -> Certification from StepBasic
59 //! 0 else
60 Standard_EXPORT Standard_Integer CaseNum (const Handle(Standard_Transient)& ent) const;
61
62 //! Returns Value as ProductDefinition (or Null if another type)
63 Standard_EXPORT Handle(StepBasic_ProductDefinition) ProductDefinition() const;
64
65 //! Returns Value as ChangeRequest (or Null if another type)
66 Standard_EXPORT Handle(StepAP203_ChangeRequest) ChangeRequest() const;
67
68 //! Returns Value as StartRequest (or Null if another type)
69 Standard_EXPORT Handle(StepAP203_StartRequest) StartRequest() const;
70
71 //! Returns Value as Change (or Null if another type)
72 Standard_EXPORT Handle(StepAP203_Change) Change() const;
73
74 //! Returns Value as StartWork (or Null if another type)
75 Standard_EXPORT Handle(StepAP203_StartWork) StartWork() const;
76
77 //! Returns Value as ApprovalPersonOrganization (or Null if another type)
78 Standard_EXPORT Handle(StepBasic_ApprovalPersonOrganization) ApprovalPersonOrganization() const;
79
80 //! Returns Value as Contract (or Null if another type)
81 Standard_EXPORT Handle(StepBasic_Contract) Contract() const;
82
83 //! Returns Value as SecurityClassification (or Null if another type)
84 Standard_EXPORT Handle(StepBasic_SecurityClassification) SecurityClassification() const;
85
86 //! Returns Value as Certification (or Null if another type)
87 Standard_EXPORT Handle(StepBasic_Certification) Certification() const;
88
89
90
91
92protected:
93
94
95
96
97
98private:
99
100
101
102
103
104};
105
106
107
108
109
110
111
112#endif // _StepAP203_DateTimeItem_HeaderFile