0031668: Visualization - WebGL sample doesn't work on Emscripten 1.39
[occt.git] / src / StepBasic / StepBasic_DocumentFile.cxx
1 // Created on: 2000-05-11
2 // Created by: data exchange team
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_CharacterizedObject.hxx>
20 #include <StepBasic_DocumentFile.hxx>
21 #include <StepBasic_DocumentType.hxx>
22 #include <TCollection_HAsciiString.hxx>
23
24 IMPLEMENT_STANDARD_RTTIEXT(StepBasic_DocumentFile,StepBasic_Document)
25
26 //=======================================================================
27 //function : StepBasic_DocumentFile
28 //purpose  : 
29 //=======================================================================
30 StepBasic_DocumentFile::StepBasic_DocumentFile ()
31 {
32   theCharacterizedObject = new StepBasic_CharacterizedObject;
33 }
34
35 //=======================================================================
36 //function : Init
37 //purpose  : 
38 //=======================================================================
39
40 void StepBasic_DocumentFile::Init (const Handle(TCollection_HAsciiString) &aDocument_Id,
41                                    const Handle(TCollection_HAsciiString) &aDocument_Name,
42                                    const Standard_Boolean hasDocument_Description,
43                                    const Handle(TCollection_HAsciiString) &aDocument_Description,
44                                    const Handle(StepBasic_DocumentType) &aDocument_Kind,
45                                    const Handle(TCollection_HAsciiString) &aCharacterizedObject_Name,
46                                    const Standard_Boolean hasCharacterizedObject_Description,
47                                    const Handle(TCollection_HAsciiString) &aCharacterizedObject_Description)
48 {
49   StepBasic_Document::Init(aDocument_Id,
50                            aDocument_Name,
51                            hasDocument_Description,
52                            aDocument_Description,
53                            aDocument_Kind);
54     theCharacterizedObject->Init(aCharacterizedObject_Name,
55                                  hasCharacterizedObject_Description,
56                                  aCharacterizedObject_Description);
57 }
58
59 //=======================================================================
60 //function : CharacterizedObject
61 //purpose  : 
62 //=======================================================================
63
64 Handle(StepBasic_CharacterizedObject) StepBasic_DocumentFile::CharacterizedObject () const
65 {
66   return theCharacterizedObject;
67 }
68
69 //=======================================================================
70 //function : SetCharacterizedObject
71 //purpose  : 
72 //=======================================================================
73
74 void StepBasic_DocumentFile::SetCharacterizedObject (const Handle(StepBasic_CharacterizedObject) &aCharacterizedObject)
75 {
76   theCharacterizedObject = aCharacterizedObject;
77 }