// HTML_Cell.cpp: implementation of the HTML_Cell class. // ////////////////////////////////////////////////////////////////////// #include "HTML_all.h" #include "HTML_Cell.h" ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// HTML_Cell::HTML_Cell() { } HTML_Cell::~HTML_Cell() { } HTML_Row* HTML_Cell::setWidth(char* x) { width = x; return(this); } HTML_Row* HTML_Cell::setHeight(char* x) { height = x; return(this); } HTML_Row* HTML_Cell::setColspan(char* x) { colspan = x; return(this); } HTML_Row* HTML_Cell::setRowspan(char* x) { rowspan = x; return(this); } const char* HTML_Cell::getWidth() { return(width.c_str()); } const char* HTML_Cell::getHeight() { return(height.c_str()); } const char* HTML_Cell::getColspan() { return(colspan.c_str()); } const char* HTML_Cell::getRowspan() { return(rowspan.c_str()); } string& HTML_Cell::printString() { //print opening tag with options and new line buffer = "