0030686: Visualization, SelectMgr_ViewerSelector - sorting issues of transformation...
[occt.git] / src / XmlTObjDrivers / XmlTObjDrivers_XYZDriver.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
19 #ifndef XmlTObjDrivers_XYZDriver_HeaderFile
20 #define XmlTObjDrivers_XYZDriver_HeaderFile
21
22 #include <TObj_Common.hxx>
23 #include <XmlMDF_ADriver.hxx>
24
25 class XmlTObjDrivers_XYZDriver : public XmlMDF_ADriver 
26 {
27
28  public:
29
30   Standard_EXPORT XmlTObjDrivers_XYZDriver
31                          (const Handle(Message_Messenger)& theMessageDriver);
32   // constructor
33
34   Standard_EXPORT Handle(TDF_Attribute) NewEmpty() const Standard_OVERRIDE;
35   // Creates a new attribute
36
37   Standard_EXPORT Standard_Boolean Paste
38                          (const XmlObjMgt_Persistent&  Source,
39                           const Handle(TDF_Attribute)& Target,
40                           XmlObjMgt_RRelocationTable&  RelocTable) const Standard_OVERRIDE;
41   // Translate the contents of <aSource> and put it
42   // into <aTarget>, using the relocation table
43   // <aRelocTable> to keep the sharings.
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   // Store master and referred labels as entry, the other model referred 
53   // as entry in model-container
54   // The XYZ pointing nowhere is not stored 
55
56  public:
57   // CASCADE RTTI
58   DEFINE_STANDARD_RTTIEXT(XmlTObjDrivers_XYZDriver,XmlMDF_ADriver)
59 };
60
61 // Define handle class
62 DEFINE_STANDARD_HANDLE(XmlTObjDrivers_XYZDriver,XmlMDF_ADriver)
63
64 #endif
65
66 #ifdef _MSC_VER
67 #pragma once
68 #endif