diff --git a/.gitignore b/.gitignore
index 793c0f3..f742d5b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,5 +3,5 @@ bin/
obj/
*.cbp
*.layout
-*.depend
*.user
+*.depend
diff --git a/lab01.cbp b/lab01.cbp
index e7b48a0..d46f9b1 100644
--- a/lab01.cbp
+++ b/lab01.cbp
@@ -13,6 +13,7 @@
+
@@ -31,7 +32,12 @@
+
+
+
+
+
diff --git a/main.cpp b/main.cpp
index f6de8cf..9147e3f 100644
--- a/main.cpp
+++ b/main.cpp
@@ -3,6 +3,7 @@
#include "histogram.h"
#include "text.h"
#include "svg.h"
+#include
using namespace std;
struct Input {
@@ -33,6 +34,7 @@ Input 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);