Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
12 строки
284 B
C++
12 строки
284 B
C++
#ifndef SVG_H_INCLUDED
|
|
#define SVG_H_INCLUDED
|
|
#include <vector>
|
|
#include <iostream>
|
|
#include <algorithm>
|
|
#include <string>
|
|
void
|
|
show_histogram_svg(const std::vector<size_t>& bins, const std::vector<double>& borders, size_t bin_count, std::string filling);
|
|
|
|
|
|
#endif // SVG_H_INCLUDED
|