0026936: Drawbacks of inlining in new type system in OCCT 7.0 -- automatic
[occt.git] / src / StepAP242 / StepAP242_ItemIdentifiedRepresentationUsage.cxx
1 // Created on: 2015-07-10
2 // Created by: Irina KRYLOVA
3 // Copyright (c) 2015 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 #include <StepAP242_ItemIdentifiedRepresentationUsage.hxx>
17
18 #include <StepAP242_ItemIdentifiedRepresentationUsageDefinition.hxx>
19 #include <StepRepr_HArray1OfRepresentationItem.hxx>
20
21 IMPLEMENT_STANDARD_RTTIEXT(StepAP242_ItemIdentifiedRepresentationUsage,MMgt_TShared)
22
23 //=======================================================================
24 //function : StepAP242_ItemIdentifiedRepresentationUsage
25 //purpose  : 
26 //=======================================================================
27
28 StepAP242_ItemIdentifiedRepresentationUsage::StepAP242_ItemIdentifiedRepresentationUsage ()  {}
29
30 //=======================================================================
31 //function : Init
32 //purpose  : 
33 //=======================================================================
34
35 void StepAP242_ItemIdentifiedRepresentationUsage::Init(
36   const Handle(TCollection_HAsciiString)& theName,
37   const Handle(TCollection_HAsciiString)& theDescription,
38   const StepAP242_ItemIdentifiedRepresentationUsageDefinition& theDefinition,
39   const Handle(StepRepr_Representation)& theUsedRepresentation,
40   const Handle(StepRepr_HArray1OfRepresentationItem)& theIdentifiedItem)
41 {
42   // --- classe own fields ---
43   name = theName;
44   description = theDescription;
45   definition = theDefinition;
46   usedRepresentation = theUsedRepresentation;
47   identifiedItem = theIdentifiedItem;
48 }