//line.cpp #include "line.h" line::line(int r, int c, int s) { size=s; row=r; col=c; mysymbol='x'; } char hor_line::symbol='-'; hor_line::hor_line(int r, int c, int s) :line(r,c,s) {mysymbol=symbol;} void hor_line::draw(screenbuffer& sc) { int j; for (j=col; j