From 460e47151febb13cde9ebd8bd662c18881c16c5c Mon Sep 17 00:00:00 2001 From: KnyazevSK Date: Mon, 22 May 2023 01:33:08 +0400 Subject: [PATCH] =?UTF-8?q?code:=20=D1=81=D0=B4=D0=B5=D0=BB=D0=B0=D0=BD=20?= =?UTF-8?q?6=D1=8B=D0=B9=20=D0=BF=D1=83=D0=BD=D0=BA=D1=82(svg)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 ++ main.cpp | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 4c7473d..7576401 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ /bin /obj +/lab03.depend +/unittest.depend diff --git a/main.cpp b/main.cpp index 987a660..960367a 100644 --- a/main.cpp +++ b/main.cpp @@ -3,6 +3,7 @@ #include #include "histogram.h" #include "text.h" +#include "swg.h" using namespace std; @@ -33,7 +34,7 @@ int main() { auto in = input_data(); auto bins = make_histogram(in.numbers, in.bin_count); - show_histogram_text(bins, in.bin_count); + show_histogram_svg(bins); getch(); return 0; }