#include #include using namespace std; class d_html { public: // internal data vector data; vector head; // column names vector col_w; // column width string head_cell_style; string head_style1, head_style2; string data_cell_style; string data_style1, data_style2; // table properties unsigned int border; bool show_head; string width; string height; string title; // constructors d_html::d_html(); d_html::d_html( int, int ); // functions void d_html::resize( int, int ); void d_html::set( int, int, string ); void d_html::set( int, int, char & ); friend ostream &operator<< (ostream &out, const d_html &L ); };