diff --git a/main.cpp b/main.cpp index 84fd6fb..fffe68f 100644 --- a/main.cpp +++ b/main.cpp @@ -2,6 +2,7 @@ #include #include "histogram.h" #include "text.h" +#include "svg.h" using namespace std; struct Input @@ -33,5 +34,5 @@ int main() size_t max_count; auto in = input_data(); auto bins = make_histogram(in.numbers, in.bin_count); - show_histogram_text(bins, in.bin_count, max_count); + show_histogram_svg(bins); }