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; }