0024710: Avoid including Handle_Class.hxx headers except where necessary
[occt.git] / src / BinTObjDrivers / BinTObjDrivers_IntSparseArrayDriver.hxx
1 // Created on: 2007-03-30
2 // Created by: Michael SAZONOV
3 // Copyright (c) 2007-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 BinTObjDrivers_IntSparseArrayDriver_HeaderFile
19 #define BinTObjDrivers_IntSparseArrayDriver_HeaderFile
20
21 #include <TObj_Common.hxx>
22 #include <BinMDF_ADriver.hxx>
23
24 class BinTObjDrivers_IntSparseArrayDriver : public BinMDF_ADriver 
25 {
26
27  public:
28
29   Standard_EXPORT BinTObjDrivers_IntSparseArrayDriver
30                          (const Handle(CDM_MessageDriver)& theMessageDriver);
31   // constructor
32
33   Standard_EXPORT Handle(TDF_Attribute) NewEmpty() const;
34   // Creates a new attribute
35
36   Standard_EXPORT Standard_Boolean Paste
37                          (const BinObjMgt_Persistent&  theSource,
38                           const Handle(TDF_Attribute)& theTarget,
39                           BinObjMgt_RRelocationTable&  theRelocTable) const;
40   // Translate the contents of <theSource> and put it
41   // into <theTarget>
42
43   Standard_EXPORT void Paste
44                          (const Handle(TDF_Attribute)& theSource,
45                           BinObjMgt_Persistent&        theTarget,
46                           BinObjMgt_SRelocationTable&  theRelocTable) const;
47   // Translate the contents of <aSource> and put it
48   // into <aTarget>
49
50  public:
51   // CASCADE RTTI
52   DEFINE_STANDARD_RTTI(BinTObjDrivers_IntSparseArrayDriver)
53 };
54
55 // Define handle class
56 DEFINE_STANDARD_HANDLE(BinTObjDrivers_IntSparseArrayDriver,BinMDF_ADriver)
57
58 #endif
59
60 #ifdef _MSC_VER
61 #pragma once
62 #endif