#ifndef __COMMON_HPP #define __COMMON_HPP struct fPOINT { double x; double y; operator POINT() const { POINT p;p.x=x;p.y=y; return p; } }; #endif