#ifndef SVG_H_INCLUDED #define SVG_H_INCLUDED #include #include using namespace std; void svg_begin(double width, double height); void svg_end(); void svg_text(double left, double baseline, size_t font, string text); size_t enter_font_size(size_t &font); void svg_rect(double x, double y, double width, double height, string stroke, string fill); void show_histogram_svg(const vector &bins, size_t &font); #endif // SVG_H_INCLUDED