0025418: Debug output to be limited to OCC development environment
[occt.git] / src / BinTObjDrivers / BinTObjDrivers_ObjectDriver.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
19#ifndef BinTObjDrivers_ObjectDriver_HeaderFile
20#define BinTObjDrivers_ObjectDriver_HeaderFile
21
22#include <TObj_Common.hxx>
23#include <BinMDF_ADriver.hxx>
24
25class BinTObjDrivers_ObjectDriver : public BinMDF_ADriver
26{
27
28 public:
29
30 Standard_EXPORT BinTObjDrivers_ObjectDriver
31 (const Handle(CDM_MessageDriver)& theMessageDriver);
32 // constructor
33
34 Standard_EXPORT Handle(TDF_Attribute) NewEmpty() const;
35 // Creates a new attribute
36
37 Standard_EXPORT Standard_Boolean Paste
38 (const BinObjMgt_Persistent& Source,
39 const Handle(TDF_Attribute)& Target,
40 BinObjMgt_RRelocationTable& RelocTable) const;
41 // Translate the contents of <aSource> and put it
42 // into <aTarget>, using the relocation table
43 // <aRelocTable> to keep the sharings.
44 // an TObj_Object is restored by TObj_Persistence basing on class name
45 // stored in Source
46
47 Standard_EXPORT void Paste
48 (const Handle(TDF_Attribute)& Source,
49 BinObjMgt_Persistent& Target,
50 BinObjMgt_SRelocationTable& RelocTable) const;
51 // Translate the contents of <aSource> and put it
52 // into <aTarget>, using the relocation table
53 // <aRelocTable> to keep the sharings.
54 // anObject is stored as a Name of class derived from TObj_Object
55
56 public:
57 // CASCADE RTTI
58 DEFINE_STANDARD_RTTI(BinTObjDrivers_ObjectDriver)
59};
60
61// Define handle class
62DEFINE_STANDARD_HANDLE(BinTObjDrivers_ObjectDriver,BinMDF_ADriver)
63
64
65#endif
66
67#ifdef _MSC_VER
68#pragma once
69#endif