18 lines
234 B
C++
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
|