Родитель
4a7ee50d89
Сommit
c491c81842
@ -1,8 +1,9 @@
|
|||||||
#ifndef HISTOGRAM_H_INCLUDED
|
#ifndef HISTOGRAM_H_INCLUDED
|
||||||
#define HISTOGRAM_H_INCLUDED
|
#define HISTOGRAM_H_INCLUDED
|
||||||
#include "histogram.cpp" //Возможно, костыль. Но без этого не работает!
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
void FindMinMax(const std::vector<double>& marks, double& min, double& max);
|
||||||
std::vector<double> MakeHistogram(const std::vector<double>& marks, int NCharts);
|
std::vector<double> MakeHistogram(const std::vector<double>& marks, int NCharts);
|
||||||
|
|
||||||
#endif // HISTOGRAM_H_INCLUDED
|
#endif // HISTOGRAM_H_INCLUDED
|
@ -1,8 +1,8 @@
|
|||||||
#ifndef TEXT_H_INCLUDED
|
#ifndef TEXT_H_INCLUDED
|
||||||
#define TEXT_H_INCLUDED
|
#define TEXT_H_INCLUDED
|
||||||
#include "text.cpp" //Возможно, костыль. Но без этого не работает!
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
void show_histogram_text(const vector<double>& marks, const vector<double>& chart);
|
void show_histogram_text(const std::vector<double>& marks, const std::vector<double>& chart);
|
||||||
|
|
||||||
#endif // TEXT_H_INCLUDED
|
#endif // TEXT_H_INCLUDED
|
Загрузка…
Ссылка в новой задаче