#ifndef svg_hpp
#define svg_hpp
#include <vector>
#include <string>

void svg_begin(double width, double height);
void svg_end();
void svg_text(double left, double baseline, std::string text);
void show_histogram_svg(const std::vector<size_t>& bins);
void svg_rect(double x, double y, double width, double height, std::string stroke = "black", std::string fill = "black");

#endif /* svg_hpp */