0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / src / IMeshData / IMeshData_Shape.hxx
1 // Created on: 2016-04-07
2 // Copyright (c) 2016 OPEN CASCADE SAS
3 // Created by: Oleg AGASHIN
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 _IMeshData_Shape_HeaderFile
17 #define _IMeshData_Shape_HeaderFile
18
19 #include <TopoDS_Shape.hxx>
20
21 //! Interface class representing model with associated TopoDS_Shape.
22 //! Intended for inheritance by structures and algorithms keeping 
23 //! reference TopoDS_Shape.
24 class IMeshData_Shape : public Standard_Transient
25 {
26 public:
27
28   //! Destructor.
29   virtual ~IMeshData_Shape()
30   {
31   }
32
33   //! Assigns shape to discrete shape.
34   void SetShape (const TopoDS_Shape& theShape)
35   {
36     myShape = theShape;
37   }
38
39   //! Returns shape assigned to discrete shape.
40   const TopoDS_Shape& GetShape () const
41   {
42     return myShape;
43   }
44
45   DEFINE_STANDARD_RTTIEXT(IMeshData_Shape, Standard_Transient)
46
47 protected:
48
49   //! Constructor.
50   IMeshData_Shape()
51   {
52   }
53
54   //! Constructor.
55   IMeshData_Shape (const TopoDS_Shape& theShape)
56     : myShape(theShape)
57   {
58   }
59
60 private:
61
62   TopoDS_Shape myShape;
63 };
64
65 #endif