0031668: Visualization - WebGL sample doesn't work on Emscripten 1.39
[occt.git] / src / XmlObjMgt / XmlObjMgt_RRelocationTable.cxx
CommitLineData
b34d86cb 1// Created on: 2018-10-02
2// Created by: Sergey ZARITCHNY
3// Copyright (c) 2018 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 <XmlObjMgt_RRelocationTable.hxx>
17
18//=======================================================================
19//function : GetHeaderData
20//purpose : getter for the file header data
21//=======================================================================
22
23const Handle(Storage_HeaderData)& XmlObjMgt_RRelocationTable::GetHeaderData() const
24{
25 return myHeaderData;
26}
27
28//=======================================================================
29//function : SetHeaderData
30//purpose : setter for the file header data
31//=======================================================================
32
33void XmlObjMgt_RRelocationTable::SetHeaderData(
34 const Handle(Storage_HeaderData)& theHeaderData)
35{
36 myHeaderData = theHeaderData;
37}
38
39//=======================================================================
40//function : Clear
41//purpose : The relocation table is cleared before/after reading in a document.
42// : In this case the reference to the file header data should also be
43// : cleared, because it is specific to the document.
44//=======================================================================
45void XmlObjMgt_RRelocationTable::Clear(const Standard_Boolean doReleaseMemory)
46{
47 myHeaderData.Nullify();
48 TColStd_DataMapOfIntegerTransient::Clear(doReleaseMemory);
49}