// HTML_Table.cpp: implementation of the HTML_Table class. // ////////////////////////////////////////////////////////////////////// #include "HTML_all.h" #include "HTML_Table.h" ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// HTML_Table::HTML_Table() { } HTML_Table::~HTML_Table() { } HTML_Table* HTML_Table::setCellspacing(char * x) { cellspacing = x; return(this); } HTML_Table* HTML_Table::setCellpadding(char * x) { cellpadding = x; return(this); } HTML_Table* HTML_Table::setBgcolor(char * x) { bgcolor = x; return(this); } HTML_Table* HTML_Table::setBorder(char * x) { border = x; return(this); } HTML_Table* HTML_Table::setWidth(char * x) { width = x; return(this); } const char* HTML_Table::getCellspacing() { return(cellspacing.c_str()); } const char* HTML_Table::getCellpadding() { return(cellpadding.c_str()); } const char* HTML_Table::getBgcolor() { return(bgcolor.c_str()); } const char* HTML_Table::getBorder() { return(border.c_str()); } const char* HTML_Table::getWidth() { return(width.c_str()); } string& HTML_Table::printString() { //print opening tag with options and new line buffer = "