From a1b8390812d019fe05bad82b003d5df7cedd2609 Mon Sep 17 00:00:00 2001 From: "Raniya (ShabanovaRR)" Date: Sun, 4 May 2025 17:55:13 +0300 Subject: [PATCH] =?UTF-8?q?=D1=84=D0=BE=D1=80=D0=BC=D0=B0=D1=82=20svg?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); }