diff options
author | Alexander Zaitsev <zamazan4ik@tut.by> | 2020-03-17 05:21:09 +0300 |
---|---|---|
committer | Alexander Zaitsev <zamazan4ik@tut.by> | 2020-03-17 05:21:09 +0300 |
commit | a2ea1d3c9df1718cafaf0e51d19c73e0ced903e5 (patch) | |
tree | fb53961975917598e28c461de2c7463537d5767d /src/Bot.cpp | |
parent | 70ffa285512d2fa829b6c73aa24d6f4b3e314edd (diff) |
format: add missing headers
- add missing include headers in different part of tgbot-cpp library, remove unused includes
Tested:
- Local build
Diffstat (limited to 'src/Bot.cpp')
-rw-r--r-- | src/Bot.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Bot.cpp b/src/Bot.cpp index b1e1ea5..e0acbdb 100644 --- a/src/Bot.cpp +++ b/src/Bot.cpp @@ -2,6 +2,9 @@ #include "tgbot/EventBroadcaster.h" +#include <memory> +#include <string> + namespace TgBot { Bot::Bot(std::string token, const HttpClient& httpClient) |