Salome HOME
Debug of movement of part results
[modules/shaper.git] / src / GeomAPI / GeomAPI_Trsf.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        GeomAPI_XYZ.hxx
4 // Created:     13 July 2015
5 // Author:      Mikhail PONIKAROV
6
7 #ifndef GeomAPI_Trsf_H_
8 #define GeomAPI_Trsf_H_
9
10 #include <GeomAPI_Interface.h>
11 #include <memory>
12
13 /**\class GeomAPI_Trsf
14  * \ingroup DataModel
15  * \brief Keep the transformation matrix coefficients
16  */
17
18 class GeomAPI_Trsf : public GeomAPI_Interface
19 {
20  public:
21   /// Keeps no transformation, it may be set by setImpl
22   GEOMAPI_EXPORT GeomAPI_Trsf();
23   /// Takes the pointer to existing transformation
24   GEOMAPI_EXPORT GeomAPI_Trsf(void* theTrsf);
25 };
26
27 #endif
28