0031789: Coding Rules - remove redundant Standard_EXPORT from TKMesh
[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 <Standard_Type.hxx>
20 #include <TopoDS_Shape.hxx>
21
22 //! Interface class representing model with associated TopoDS_Shape.
23 //! Intended for inheritance by structures and algorithms keeping 
24 //! reference TopoDS_Shape.
25 class IMeshData_Shape : public Standard_Transient
26 {
27 public:
28
29   //! Destructor.
30   virtual ~IMeshData_Shape()
31   {
32   }
33
34   //! Assigns shape to discrete shape.
35   void SetShape (const TopoDS_Shape& theShape)
36   {
37     myShape = theShape;
38   }
39
40   //! Returns shape assigned to discrete shape.
41   const TopoDS_Shape& GetShape () const
42   {
43     return myShape;
44   }
45
46   DEFINE_STANDARD_RTTIEXT(IMeshData_Shape, Standard_Transient)
47
48 protected:
49
50   //! Constructor.
51   IMeshData_Shape()
52   {
53   }
54
55   //! Constructor.
56   IMeshData_Shape (const TopoDS_Shape& theShape)
57     : myShape(theShape)
58   {
59   }
60
61 private:
62
63   TopoDS_Shape myShape;
64 };
65
66 #endif