| 131 | // do_row ------------------------------------------------------------------// |
| 132 | |
| 133 | void do_row( const string & test_case ) |
| 134 | { |
| 135 | outfile << "<tr>\n"; |
| 136 | |
| 137 | if (test_case.empty()) |
| 138 | outfile << "<td><font size=\"-1\"><i>empty</i></font></td>\n"; |
| 139 | else |
| 140 | outfile << "<td><code>" << test_case << "</code></td>\n"; |
| 141 | |
| 142 | for ( int i = 0; i < sizeof(column)/sizeof(column_base&); ++i ) |
| 143 | { |
| 144 | do_cell( test_case, i ); |
| 145 | } |
| 146 | |
| 147 | outfile << "</tr>\n"; |
| 148 | } |
| 149 | |
| 150 | // do_table ----------------------------------------------------------------// |
| 151 | |