#include "html.h"
void htmlstream::title(const string& title) {
str << "
" << title << "\n";
}
void htmlstream::twoFrames(const string& file1, const string& file2, double ratio) {
int p1 = int(100 * (ratio / (1 + ratio)));
int p2 = 100 - p1;
str << "\n";
}
void htmlstream::beginTable(int border) {
str << "\n";
}
void htmlstream::endTable(void) {
str << "