0033039: Coding - get rid of unused headers [StepData to StlAPI]
[occt.git] / src / StepShape / StepShape_QualifiedRepresentationItem.hxx
1 // Created on: 2001-04-24
2 // Created by: Christian CAILLET
3 // Copyright (c) 2001-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 #ifndef _StepShape_QualifiedRepresentationItem_HeaderFile
17 #define _StepShape_QualifiedRepresentationItem_HeaderFile
18
19 #include <Standard.hxx>
20
21 #include <StepShape_HArray1OfValueQualifier.hxx>
22 #include <StepRepr_RepresentationItem.hxx>
23 #include <Standard_Integer.hxx>
24 class TCollection_HAsciiString;
25 class StepShape_ValueQualifier;
26
27
28 class StepShape_QualifiedRepresentationItem;
29 DEFINE_STANDARD_HANDLE(StepShape_QualifiedRepresentationItem, StepRepr_RepresentationItem)
30
31 //! Added for Dimensional Tolerances
32 class StepShape_QualifiedRepresentationItem : public StepRepr_RepresentationItem
33 {
34
35 public:
36
37   
38   Standard_EXPORT StepShape_QualifiedRepresentationItem();
39   
40   Standard_EXPORT void Init (const Handle(TCollection_HAsciiString)& aName, const Handle(StepShape_HArray1OfValueQualifier)& qualifiers);
41   
42   Standard_EXPORT Handle(StepShape_HArray1OfValueQualifier) Qualifiers() const;
43   
44   Standard_EXPORT Standard_Integer NbQualifiers() const;
45   
46   Standard_EXPORT void SetQualifiers (const Handle(StepShape_HArray1OfValueQualifier)& qualifiers);
47   
48   Standard_EXPORT StepShape_ValueQualifier QualifiersValue (const Standard_Integer num) const;
49   
50   Standard_EXPORT void SetQualifiersValue (const Standard_Integer num, const StepShape_ValueQualifier& aqualifier);
51
52
53
54
55   DEFINE_STANDARD_RTTIEXT(StepShape_QualifiedRepresentationItem,StepRepr_RepresentationItem)
56
57 protected:
58
59
60
61
62 private:
63
64
65   Handle(StepShape_HArray1OfValueQualifier) theQualifiers;
66
67
68 };
69
70
71
72
73
74
75
76 #endif // _StepShape_QualifiedRepresentationItem_HeaderFile