diff options
Diffstat (limited to 'include/tgbot/net')
-rw-r--r-- | include/tgbot/net/BoostHttpOnlySslClient.h | 1 | ||||
-rw-r--r-- | include/tgbot/net/CurlHttpClient.h | 1 | ||||
-rw-r--r-- | include/tgbot/net/HttpClient.h | 1 | ||||
-rw-r--r-- | include/tgbot/net/HttpReqArg.h | 1 | ||||
-rw-r--r-- | include/tgbot/net/HttpServer.h | 4 | ||||
-rw-r--r-- | include/tgbot/net/TgWebhookLocalServer.h | 2 | ||||
-rw-r--r-- | include/tgbot/net/TgWebhookServer.h | 2 | ||||
-rw-r--r-- | include/tgbot/net/TgWebhookTcpServer.h | 2 |
8 files changed, 13 insertions, 1 deletions
diff --git a/include/tgbot/net/BoostHttpOnlySslClient.h b/include/tgbot/net/BoostHttpOnlySslClient.h index a047fea..dbe0c96 100644 --- a/include/tgbot/net/BoostHttpOnlySslClient.h +++ b/include/tgbot/net/BoostHttpOnlySslClient.h @@ -9,6 +9,7 @@ #include <boost/asio.hpp> #include <string> +#include <vector> namespace TgBot { diff --git a/include/tgbot/net/CurlHttpClient.h b/include/tgbot/net/CurlHttpClient.h index 30e72ba..0f93937 100644 --- a/include/tgbot/net/CurlHttpClient.h +++ b/include/tgbot/net/CurlHttpClient.h @@ -11,6 +11,7 @@ #include <curl/curl.h> #include <string> +#include <vector> namespace TgBot { diff --git a/include/tgbot/net/HttpClient.h b/include/tgbot/net/HttpClient.h index 9b452d8..a35dd7d 100644 --- a/include/tgbot/net/HttpClient.h +++ b/include/tgbot/net/HttpClient.h @@ -5,6 +5,7 @@ #include "tgbot/net/HttpReqArg.h" #include <string> +#include <vector> namespace TgBot { diff --git a/include/tgbot/net/HttpReqArg.h b/include/tgbot/net/HttpReqArg.h index 7c23eab..fcdd424 100644 --- a/include/tgbot/net/HttpReqArg.h +++ b/include/tgbot/net/HttpReqArg.h @@ -6,7 +6,6 @@ #include <boost/lexical_cast.hpp> #include <string> -#include <utility> #include <vector> #include <functional> diff --git a/include/tgbot/net/HttpServer.h b/include/tgbot/net/HttpServer.h index 51210d7..2c94dcf 100644 --- a/include/tgbot/net/HttpServer.h +++ b/include/tgbot/net/HttpServer.h @@ -6,8 +6,12 @@ #include <boost/asio.hpp> #include <cstddef> +#include <exception> +#include <functional> #include <iostream> +#include <memory> #include <string> +#include <unordered_map> #include <utility> namespace TgBot { diff --git a/include/tgbot/net/TgWebhookLocalServer.h b/include/tgbot/net/TgWebhookLocalServer.h index 2a64374..25efa66 100644 --- a/include/tgbot/net/TgWebhookLocalServer.h +++ b/include/tgbot/net/TgWebhookLocalServer.h @@ -5,6 +5,8 @@ #include "tgbot/net/TgWebhookServer.h" +#include <string> + namespace TgBot { /** diff --git a/include/tgbot/net/TgWebhookServer.h b/include/tgbot/net/TgWebhookServer.h index 85b2934..8e89765 100644 --- a/include/tgbot/net/TgWebhookServer.h +++ b/include/tgbot/net/TgWebhookServer.h @@ -6,6 +6,8 @@ #include "tgbot/TgTypeParser.h" #include "tgbot/net/HttpServer.h" +#include <string> +#include <unordered_map> #include <utility> namespace TgBot { diff --git a/include/tgbot/net/TgWebhookTcpServer.h b/include/tgbot/net/TgWebhookTcpServer.h index 28ae8aa..c812abe 100644 --- a/include/tgbot/net/TgWebhookTcpServer.h +++ b/include/tgbot/net/TgWebhookTcpServer.h @@ -3,6 +3,8 @@ #include "tgbot/net/TgWebhookServer.h" +#include <string> + namespace TgBot { /** |