gmio/tests/fake_support/opencascade/gp_XYZ.hxx
Hugues Delorme 36a4fd281e tests: add fake_support
fake_support allows to test compilation of gmio_support
is successful. It provides fake sources of the required
3rd party libraries (Qt and OpenCascade).
Fake sources allows to quickly check if nothing is broken
in gmio_support after API changes.
It will also be useful for CI.
2015-09-02 12:07:17 +02:00

18 lines
234 B
C++

#ifndef _gp_XYZ_HeaderFile
#define _gp_XYZ_HeaderFile
class gp_XYZ
{
public:
double X() const
{ return 0.; }
double Y() const
{ return 0.; }
double Z() const
{ return 0.; }
};
#endif // _gp_XYZ_HeaderFile