diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b5e5a69 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +/bin +/obj +/lab3344.layout +/lab3344.depend +/unittest.depend +/curl diff --git a/main.cpp b/main.cpp index bfdebda..471b4dc 100644 --- a/main.cpp +++ b/main.cpp @@ -4,6 +4,8 @@ #include "histogram.h" #include "text.h" #include "svg.h" +#include + using namespace std; @@ -41,6 +43,8 @@ input_data(istream& in, bool promt) int main() { + curl_global_init(CURL_GLOBAL_ALL); + size_t number_count; auto in = input_data(cin,true); auto B = make_histogram(in.numbers, in.kol_kor);