diff --git a/histogram.h b/histogram.h index f36e088..a09ad92 100644 --- a/histogram.h +++ b/histogram.h @@ -1,10 +1,16 @@ #ifndef HISTOGRAM_H_INCLUDED #define HISTOGRAM_H_INCLUDED +#include #include +// Создание корзин для оценок. + std::vector make_histogram(const std::vector& numbers, size_t bin_count); +// Создание гистограммы на основании корзин в формате SVG. + +void show_histogram_svg(const std::vector& bins); #endif // HISTOGRAM_H_INCLUDED