diff --git a/lab01.depend b/lab01.depend index b2cfa42..2a64bfd 100644 --- a/lab01.depend +++ b/lab01.depend @@ -90,3 +90,91 @@ "svg.h" +1747663012 source:c:\users\платон\desktop\project\lab01_copy\histogram.cpp + + + "histogram.h" + +1747663012 c:\users\платон\desktop\project\lab01_copy\histogram.h + + +1747663012 source:c:\users\платон\desktop\project\lab01_copy\svg.cpp + + + + + + "svg.h" + +1747663012 c:\users\платон\desktop\project\lab01_copy\svg.h + + +1747663012 source:c:\users\платон\desktop\project\lab01_copy\text.cpp + + + "text.h" + +1747663012 c:\users\платон\desktop\project\lab01_copy\text.h + + +1748263687 source:c:\users\платон\desktop\project\lab01_copy\main.cpp + + + "histogram.h" + "text.h" + "svg.h" + + +1747661306 c:\users\платон\desktop\project\lab01_copy\curl\include\curl\curl.h + "curlver.h" + "system.h" + + + + + + + + + + + "easy.h" + "multi.h" + "urlapi.h" + "options.h" + "header.h" + "websockets.h" + "mprintf.h" + "typecheck-gcc.h" + +1747661306 c:\users\платон\desktop\project\lab01_copy\curl\include\curl\curlver.h + +1747661306 c:\users\платон\desktop\project\lab01_copy\curl\include\curl\system.h + + + + + + + +1747661306 c:\users\платон\desktop\project\lab01_copy\curl\include\curl\easy.h + +1747661306 c:\users\платон\desktop\project\lab01_copy\curl\include\curl\multi.h + "curl.h" + +1747661306 c:\users\платон\desktop\project\lab01_copy\curl\include\curl\urlapi.h + "curl.h" + +1747661306 c:\users\платон\desktop\project\lab01_copy\curl\include\curl\options.h + +1747661306 c:\users\платон\desktop\project\lab01_copy\curl\include\curl\header.h + +1747661306 c:\users\платон\desktop\project\lab01_copy\curl\include\curl\websockets.h + +1747661306 c:\users\платон\desktop\project\lab01_copy\curl\include\curl\mprintf.h + + + "curl.h" + +1747661306 c:\users\платон\desktop\project\lab01_copy\curl\include\curl\typecheck-gcc.h + diff --git a/lab01.layout b/lab01.layout index 06c2d6a..5949c9e 100644 --- a/lab01.layout +++ b/lab01.layout @@ -4,10 +4,10 @@ - + - + @@ -17,7 +17,7 @@ - + diff --git a/main.cpp b/main.cpp index 5069fee..de0f7ae 100644 --- a/main.cpp +++ b/main.cpp @@ -3,6 +3,7 @@ #include "histogram.h" #include "text.h" #include "svg.h" +#include using namespace std; @@ -31,6 +32,7 @@ input_data(istream& in, bool prompt){ } int main() { + curl_global_init(CURL_GLOBAL_ALL); auto in = input_data(cin, true);; auto bins = make_histogram(in.numbers, in.bin_count); show_histogram_svg(bins);