0026936: Drawbacks of inlining in new type system in OCCT 7.0 -- manual
[occt.git] / src / XmlTObjDrivers / XmlTObjDrivers_ModelDriver.hxx
CommitLineData
b311480e 1// Created on: 2004-11-24
2// Created by: Edward AGAPOV
973c2be1 3// Copyright (c) 2004-2014 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
d5f74e42 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
973c2be1 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.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
b311480e 15
7fd59977 16// The original implementation Copyright: (C) RINA S.p.A
17
18#ifndef XmlTObjDrivers_ModelDriver_HeaderFile
19#define XmlTObjDrivers_ModelDriver_HeaderFile
20
21#include <TObj_Common.hxx>
22#include <XmlMDF_ADriver.hxx>
23
24class XmlTObjDrivers_ModelDriver : public XmlMDF_ADriver
25{
26
27 public:
28
29 Standard_EXPORT XmlTObjDrivers_ModelDriver
30 (const Handle(CDM_MessageDriver)& theMessageDriver);
31 // constructor
32
79104795 33 Standard_EXPORT Handle(TDF_Attribute) NewEmpty() const Standard_OVERRIDE;
7fd59977 34 // Creates a new attribute
35
36 Standard_EXPORT Standard_Boolean Paste
37 (const XmlObjMgt_Persistent& Source,
38 const Handle(TDF_Attribute)& Target,
79104795 39 XmlObjMgt_RRelocationTable& RelocTable) const Standard_OVERRIDE;
7fd59977 40 // Translate the contents of <aSource> and put it
41 // into <aTarget>, using the relocation table
42 // <aRelocTable> to keep the sharings.
43 // Set CurrentModel of TObj_Persistence into Target TObj_TModel
44 // if its GUID and GUID stored in Source are same
45
46 Standard_EXPORT void Paste
47 (const Handle(TDF_Attribute)& Source,
48 XmlObjMgt_Persistent& Target,
79104795 49 XmlObjMgt_SRelocationTable& RelocTable) const Standard_OVERRIDE;
7fd59977 50 // Translate the contents of <aSource> and put it
51 // into <aTarget>, using the relocation table
52 // <aRelocTable> to keep the sharings.
53 // a Model is stored as its GUID
54
55 public:
56 // CASCADE RTTI
ec357c5c 57 DEFINE_STANDARD_RTTI(XmlTObjDrivers_ModelDriver, XmlMDF_ADriver)
7fd59977 58};
59
60// Define handle class
61DEFINE_STANDARD_HANDLE(XmlTObjDrivers_ModelDriver,XmlMDF_ADriver)
62
63
64#endif
65
66#ifdef _MSC_VER
67#pragma once
68#endif