0031687: Draw Harness, ViewerTest - extend command vrenderparams with option updating...
[occt.git] / src / StepBasic / StepBasic_DocumentRepresentationType.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_Type.hxx>
19 #include <StepBasic_Document.hxx>
20 #include <StepBasic_DocumentRepresentationType.hxx>
21 #include <TCollection_HAsciiString.hxx>
22
23 IMPLEMENT_STANDARD_RTTIEXT(StepBasic_DocumentRepresentationType,Standard_Transient)
24
25 //=======================================================================
26 //function : StepBasic_DocumentRepresentationType
27 //purpose  : 
28 //=======================================================================
29 StepBasic_DocumentRepresentationType::StepBasic_DocumentRepresentationType ()
30 {
31 }
32
33 //=======================================================================
34 //function : Init
35 //purpose  : 
36 //=======================================================================
37
38 void StepBasic_DocumentRepresentationType::Init (const Handle(TCollection_HAsciiString) &aName,
39                                                  const Handle(StepBasic_Document) &aRepresentedDocument)
40 {
41
42   theName = aName;
43
44   theRepresentedDocument = aRepresentedDocument;
45 }
46
47 //=======================================================================
48 //function : Name
49 //purpose  : 
50 //=======================================================================
51
52 Handle(TCollection_HAsciiString) StepBasic_DocumentRepresentationType::Name () const
53 {
54   return theName;
55 }
56
57 //=======================================================================
58 //function : SetName
59 //purpose  : 
60 //=======================================================================
61
62 void StepBasic_DocumentRepresentationType::SetName (const Handle(TCollection_HAsciiString) &aName)
63 {
64   theName = aName;
65 }
66
67 //=======================================================================
68 //function : RepresentedDocument
69 //purpose  : 
70 //=======================================================================
71
72 Handle(StepBasic_Document) StepBasic_DocumentRepresentationType::RepresentedDocument () const
73 {
74   return theRepresentedDocument;
75 }
76
77 //=======================================================================
78 //function : SetRepresentedDocument
79 //purpose  : 
80 //=======================================================================
81
82 void StepBasic_DocumentRepresentationType::SetRepresentedDocument (const Handle(StepBasic_Document) &aRepresentedDocument)
83 {
84   theRepresentedDocument = aRepresentedDocument;
85 }