#ifndef POINT_HPP
#define POINT_HPP
#include <iostream>

class Point() {
private: 
	double x;
	double y;

	static int count; //static field to count how manypoints have peen created
	
public: 
	Point();
	Point(double xVal, double yVal);

	//getters
	double getX() const;
	double getY() const;

	//setters
	void setX(double xVal);
	void setY(double yVal);

	//input output
	void input();
	void output() const;	

	static inr getCount();
};




#endif
