Newer
Older
// Location.h
#ifndef LOCATION_H
#define LOCATION_H
namespace math1d_cl
{
class Location
{
public:
const float& getX();
void setX(const float& x);
const float& getY();
void setY(const float& y);
const float& getZ();
void setZ(const float& z);
private:
float m_x;
float m_y;
float m_z;
};
}
#endif