From 2223e6c910aa65b8b8e2a9af4b433bb14ddfa3e3 Mon Sep 17 00:00:00 2001 From: BezhenarAN Date: Wed, 24 Apr 2024 16:40:28 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BA=D0=BE=D0=B4=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index b02a3dd..7ae72b6 100644 --- a/main.cpp +++ b/main.cpp @@ -2,6 +2,8 @@ #include #include "histogram.h" #include "text.h" +#include "svg.h" + using namespace std; @@ -44,7 +46,7 @@ int main(){ auto bins = make_histogram(in.numbers, in.bin_count); - show_histogram_text(bins); + show_histogram_svg(bins); }