#include "svg.h" #include 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, const std::string& text) { cout << "" << text << "\n"; } void svg_rect(double x, double y, double width, double height, const std::string& stroke, const std::string& fill) { cout << "\n"; }