/**************************************************************************** ** COPYRIGHT (C): 1998 Cay S. Horstmann. All Rights Reserved. ** PROJECT: Computing Concepts with C++ 2E ** FILE: line.cpp ****************************************************************************/ #include "ccc_win.cpp" int main() { Point p(1, 3); Point q(4, 7); Line s(p, q); cwin << s; return 0; }