#include #include "Lines.hxx" namespace Lines { DBGVAR(dbg, "Lines.general"); //static bool inited = false; //static int error; //int foo; using std::cerr; using std::cout; using std::ostream; void line(ZPt a, ZPt b) { cout << "x: "<< a.x << ", "<< b.x <<" y: "<< a.y << ", "<< b.y <<"\n"; } }