diff --git a/cs-project3.cpp b/cs-project3.cpp index 9ceface..a69a61f 100644 --- a/cs-project3.cpp +++ b/cs-project3.cpp @@ -4,6 +4,8 @@ #include "text.h" #include "histogram_internal.h" #include "svg.h" +#include + using namespace std; @@ -31,7 +33,9 @@ input_data(istream& inn, bool promt) { int main() { - Input in = input_data(cin); + curl_global_init(CURL_GLOBAL_ALL); + bool promt = true; + Input in = input_data(cin, promt); auto bins = make_histogram(in.numbers, in.bin_count); show_histogram_svg(bins); return 0;