/*
 * Vertex.h
 *
 *  Created on: 18.11.2008
 *      Author: sep
 */

#ifndef VERTEX_H_
#define VERTEX_H_
#include <string>
#include "ToString.h"

class Vertex:public ToString {
public:
	double x;
	double y;
	Vertex(double x,double y);
	double arithMiddle();
	virtual ~Vertex();

	std::string toString();
};



#endif /* VERTEX_H_ */
