From 0d2aeeb57cdacbd4e0825bda88b6c62b91b1d23e Mon Sep 17 00:00:00 2001 From: MrDarkLast <stepan.sin@yandex.ru> Date: Mon, 10 Apr 2023 15:44:12 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D1=84=D0=B0=D0=B9=D0=BB=20=D0=BC=D0=BE=D0=B4=D1=83=D0=BB=D1=8C?= =?UTF-8?q?=D0=BD=D0=BE=D0=B3=D0=BE=20=D1=82=D0=B5=D1=81=D1=82=D0=B8=D1=80?= =?UTF-8?q?=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- histogram_internal.h | 4 ++++ lab1.vcxproj | 1 + lab1.vcxproj.filters | 3 +++ 3 files changed, 8 insertions(+) create mode 100644 histogram_internal.h diff --git a/histogram_internal.h b/histogram_internal.h new file mode 100644 index 0000000..f4cc286 --- /dev/null +++ b/histogram_internal.h @@ -0,0 +1,4 @@ +#pragma once +#include <vector> + +void find_minmax(const std::vector<double>& numbers, double& min, double& max); \ No newline at end of file diff --git a/lab1.vcxproj b/lab1.vcxproj index 8f1ff1c..ce5422b 100644 --- a/lab1.vcxproj +++ b/lab1.vcxproj @@ -133,6 +133,7 @@ </ItemGroup> <ItemGroup> <ClInclude Include="histogram.h" /> + <ClInclude Include="histogram_internal.h" /> <ClInclude Include="text.h" /> </ItemGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> diff --git a/lab1.vcxproj.filters b/lab1.vcxproj.filters index a753087..7e1d14f 100644 --- a/lab1.vcxproj.filters +++ b/lab1.vcxproj.filters @@ -32,5 +32,8 @@ <ClInclude Include="text.h"> <Filter>Исходные файлы</Filter> </ClInclude> + <ClInclude Include="histogram_internal.h"> + <Filter>Исходные файлы</Filter> + </ClInclude> </ItemGroup> </Project> \ No newline at end of file