diff --git a/svg.cpp b/svg.cpp new file mode 100644 index 0000000..1b08098 --- /dev/null +++ b/svg.cpp @@ -0,0 +1,24 @@ +#include +#include +using namespace std; + +void +svg_begin(double width, double height) { + cout << "\n"; + cout << "\n"; +} + +void +svg_end() { + cout << "\n"; +} + +void +show_histogram_svg(const vector & bins) { + svg_begin(400, 300); + svg_end(); +} diff --git a/svg.h b/svg.h new file mode 100644 index 0000000..4541a98 --- /dev/null +++ b/svg.h @@ -0,0 +1,7 @@ +#ifndef SVG_H_INCLUDED +#define SVG_H_INCLUDED + +void +show_histogram_svg(const std::vector& bins); + +#endif // SVG_H_INCLUDED