#include #include #include #include "svg.h" using namespace std; void svg_begin(double width, double height) { cout << "\n"; cout << "\n"; } void svg_end() { cout << "\n"; } void svg_text(double left, double baseline, string text) { cout << ""<< text <<""; } void svg_rect(double x, double y, double width, double height, string stroke, string fill){ cout << ""; }