0031668: Visualization - WebGL sample doesn't work on Emscripten 1.39
[occt.git] / src / XmlMXCAFDoc / XmlMXCAFDoc_VisMaterialDriver.hxx
1 // Copyright (c) 2019 OPEN CASCADE SAS
2 //
3 // This file is part of Open CASCADE Technology software library.
4 //
5 // This library is free software; you can redistribute it and/or modify it under
6 // the terms of the GNU Lesser General Public License version 2.1 as published
7 // by the Free Software Foundation, with special exception defined in the file
8 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9 // distribution for complete text of the license and disclaimer of any warranty.
10 //
11 // Alternatively, this file may be used under the terms of Open CASCADE
12 // commercial license or contractual agreement.
13
14 #ifndef _XmlMXCAFDoc_VisMaterialDriver_HeaderFile
15 #define _XmlMXCAFDoc_VisMaterialDriver_HeaderFile
16
17 #include <Standard.hxx>
18 #include <Standard_Type.hxx>
19
20 #include <XmlMDF_ADriver.hxx>
21 #include <Standard_Boolean.hxx>
22 #include <XmlObjMgt_RRelocationTable.hxx>
23 #include <XmlObjMgt_SRelocationTable.hxx>
24
25 DEFINE_STANDARD_HANDLE(XmlMXCAFDoc_VisMaterialDriver, XmlMDF_ADriver)
26
27 //! Attribute Driver.
28 class XmlMXCAFDoc_VisMaterialDriver : public XmlMDF_ADriver
29 {
30   DEFINE_STANDARD_RTTIEXT(XmlMXCAFDoc_VisMaterialDriver, XmlMDF_ADriver)
31 public:
32
33   //! Main constructor.
34   Standard_EXPORT XmlMXCAFDoc_VisMaterialDriver (const Handle(Message_Messenger)& theMessageDriver);
35
36   //! Create new instance of XCAFDoc_VisMaterial.
37   Standard_EXPORT Handle(TDF_Attribute) NewEmpty() const Standard_OVERRIDE;
38
39   //! Paste attribute from persistence into document.
40   Standard_EXPORT Standard_Boolean Paste (const XmlObjMgt_Persistent&  theSource,
41                                           const Handle(TDF_Attribute)& theTarget,
42                                           XmlObjMgt_RRelocationTable&  theRelocTable) const Standard_OVERRIDE;
43
44   //! Paste attribute from document into persistence.
45   Standard_EXPORT void Paste (const Handle(TDF_Attribute)& theSource,
46                               XmlObjMgt_Persistent& theTarget,
47                               XmlObjMgt_SRelocationTable& theRelocTable) const Standard_OVERRIDE;
48
49 };
50
51 #endif // _XmlMXCAFDoc_VisMaterialDriver_HeaderFile