#ifndef DPPTU_POINT_H
#define DPPTU_POINT_H

#include <SPU-Toolbox/DPPTU.h>

class DPPTUPoint
: public DPPTU 
{
 public:
  DPPTUPoint(const char* device,
	     int ncs_timeout = 5, int ncs_vtime = 1);
  ~DPPTUPoint(void);

  int  get_x(double z);
  int  get_y(double z);
  bool point_at(double x, double y, double z);

};

#endif // DPPTU_POINT_H

