0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / src / BinTObjDrivers / BinTObjDrivers_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 BinTObjDrivers_ModelDriver_HeaderFile
19#define BinTObjDrivers_ModelDriver_HeaderFile
20
7fd59977 21#include <BinMDF_ADriver.hxx>
22
23class BinTObjDrivers_ModelDriver : public BinMDF_ADriver
24{
25
26 public:
27
28 Standard_EXPORT BinTObjDrivers_ModelDriver
83ae3591 29 (const Handle(Message_Messenger)& theMessageDriver);
7fd59977 30 // constructor
31
79104795 32 Standard_EXPORT Handle(TDF_Attribute) NewEmpty() const Standard_OVERRIDE;
7fd59977 33 // Creates a new attribute
34
35 Standard_EXPORT Standard_Boolean Paste
36 (const BinObjMgt_Persistent& Source,
37 const Handle(TDF_Attribute)& Target,
79104795 38 BinObjMgt_RRelocationTable& RelocTable) const Standard_OVERRIDE;
7fd59977 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 BinObjMgt_Persistent& Target,
79104795 48 BinObjMgt_SRelocationTable& RelocTable) const Standard_OVERRIDE;
7fd59977 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
92efcf78 56 DEFINE_STANDARD_RTTIEXT(BinTObjDrivers_ModelDriver,BinMDF_ADriver)
7fd59977 57};
58
59// Define handle class
60DEFINE_STANDARD_HANDLE(BinTObjDrivers_ModelDriver,BinMDF_ADriver)
61
62
63#endif
64
65#ifdef _MSC_VER
66#pragma once
67#endif