0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / src / XCAFDoc / XCAFDoc_ShapeMapTool.hxx
CommitLineData
42cf5bc1 1// Created on: 2003-08-29
2// Created by: data exchange team
3// Copyright (c) 2003-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#ifndef _XCAFDoc_ShapeMapTool_HeaderFile
17#define _XCAFDoc_ShapeMapTool_HeaderFile
18
19#include <Standard.hxx>
42cf5bc1 20
21#include <TopTools_IndexedMapOfShape.hxx>
22#include <TDF_Attribute.hxx>
23#include <Standard_Boolean.hxx>
24class Standard_GUID;
25class TDF_Label;
26class TopoDS_Shape;
42cf5bc1 27class TDF_RelocationTable;
28
29
30class XCAFDoc_ShapeMapTool;
31DEFINE_STANDARD_HANDLE(XCAFDoc_ShapeMapTool, TDF_Attribute)
32
33//! attribute containing map of sub shapes
34class XCAFDoc_ShapeMapTool : public TDF_Attribute
35{
36
37public:
38
39
40 Standard_EXPORT static const Standard_GUID& GetID();
41
42 //! Create (if not exist) ShapeTool from XCAFDoc on <L>.
43 Standard_EXPORT static Handle(XCAFDoc_ShapeMapTool) Set (const TDF_Label& L);
44
45 //! Creates an empty tool
46 Standard_EXPORT XCAFDoc_ShapeMapTool();
47
48 //! Checks whether shape <sub> is subshape of shape stored on
49 //! label shapeL
50 Standard_EXPORT Standard_Boolean IsSubShape (const TopoDS_Shape& sub) const;
51
52 //! Sets representation (TopoDS_Shape) for top-level shape
53 Standard_EXPORT void SetShape (const TopoDS_Shape& S);
54
79104795 55 Standard_EXPORT const Standard_GUID& ID() const Standard_OVERRIDE;
42cf5bc1 56
79104795 57 Standard_EXPORT void Restore (const Handle(TDF_Attribute)& with) Standard_OVERRIDE;
42cf5bc1 58
79104795 59 Standard_EXPORT Handle(TDF_Attribute) NewEmpty() const Standard_OVERRIDE;
42cf5bc1 60
79104795 61 Standard_EXPORT void Paste (const Handle(TDF_Attribute)& into, const Handle(TDF_RelocationTable)& RT) const Standard_OVERRIDE;
42cf5bc1 62
63 Standard_EXPORT const TopTools_IndexedMapOfShape& GetMap() const;
bc73b006 64
65 //! Dumps the content of me into the stream
66 Standard_EXPORT virtual void DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth = -1) const Standard_OVERRIDE;
42cf5bc1 67
68
69
70
92efcf78 71 DEFINE_STANDARD_RTTIEXT(XCAFDoc_ShapeMapTool,TDF_Attribute)
42cf5bc1 72
73protected:
74
75
76
77
78private:
79
80
81 TopTools_IndexedMapOfShape myMap;
82
83
84};
85
86
87
88
89
90
91
92#endif // _XCAFDoc_ShapeMapTool_HeaderFile