0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / src / XmlTObjDrivers / XmlTObjDrivers_ModelDriver.hxx
1 // Created on: 2004-11-24
2 // Created by: Edward AGAPOV
3 // Copyright (c) 2004-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 // The original implementation Copyright: (C) RINA S.p.A
17
18 #ifndef XmlTObjDrivers_ModelDriver_HeaderFile
19 #define XmlTObjDrivers_ModelDriver_HeaderFile
20
21 #include <XmlMDF_ADriver.hxx>
22
23 class XmlTObjDrivers_ModelDriver : public XmlMDF_ADriver 
24 {
25
26  public:
27
28   Standard_EXPORT XmlTObjDrivers_ModelDriver
29                          (const Handle(Message_Messenger)& theMessageDriver);
30   // constructor
31
32   Standard_EXPORT Handle(TDF_Attribute) NewEmpty() const Standard_OVERRIDE;
33   // Creates a new attribute
34
35   Standard_EXPORT Standard_Boolean Paste
36                          (const XmlObjMgt_Persistent&  Source,
37                           const Handle(TDF_Attribute)& Target,
38                           XmlObjMgt_RRelocationTable&  RelocTable) const Standard_OVERRIDE;
39   // Translate the contents of <aSource> and put it
40   // into <aTarget>, using the relocation table
41   // <aRelocTable> to keep the sharings.
42   // Set CurrentModel of TObj_Persistence into Target TObj_TModel
43   // if its GUID and GUID stored in Source are same
44
45   Standard_EXPORT void Paste
46                          (const Handle(TDF_Attribute)& Source,
47                           XmlObjMgt_Persistent&        Target,
48                           XmlObjMgt_SRelocationTable&  RelocTable) const Standard_OVERRIDE;
49   // Translate the contents of <aSource> and put it
50   // into <aTarget>, using the relocation table
51   // <aRelocTable> to keep the sharings.
52   // a Model is stored as its GUID
53   
54  public:
55   // CASCADE RTTI
56   DEFINE_STANDARD_RTTIEXT(XmlTObjDrivers_ModelDriver,XmlMDF_ADriver)
57 };
58
59 // Define handle class
60 DEFINE_STANDARD_HANDLE(XmlTObjDrivers_ModelDriver,XmlMDF_ADriver)
61
62
63 #endif
64
65 #ifdef _MSC_VER
66 #pragma once
67 #endif