summaryrefslogtreecommitdiff
path: root/src/types
diff options
context:
space:
mode:
authorEgor Pugin <egor.pugin@gmail.com>2020-03-22 20:19:51 +0300
committerEgor Pugin <egor.pugin@gmail.com>2020-03-22 20:19:51 +0300
commit0777be1e0568377893d638f7015edc330602c8e5 (patch)
tree8446df5b4ebcd6e3823aa3ee50286d6c6d31a4a8 /src/types
parent0e9a5bb427757b8b6ecb2734e602fe5bc7e6354b (diff)
parenta2ea1d3c9df1718cafaf0e51d19c73e0ced903e5 (diff)
Merge branch 'master' of github.com-egorpugin:reo7sp/tgbot-cpp
Diffstat (limited to 'src/types')
-rw-r--r--src/types/InlineQueryResult.cpp2
-rw-r--r--src/types/InputFile.cpp3
2 files changed, 5 insertions, 0 deletions
diff --git a/src/types/InlineQueryResult.cpp b/src/types/InlineQueryResult.cpp
index 3d4ea6e..0993ec2 100644
--- a/src/types/InlineQueryResult.cpp
+++ b/src/types/InlineQueryResult.cpp
@@ -19,6 +19,8 @@
#include "tgbot/types/InlineQueryResultPhoto.h"
#include "tgbot/types/InlineQueryResultVideo.h"
+#include <string>
+
using namespace TgBot;
const std::string InlineQueryResultCachedAudio::TYPE = "audio";
diff --git a/src/types/InputFile.cpp b/src/types/InputFile.cpp
index 0ca1991..c74c73e 100644
--- a/src/types/InputFile.cpp
+++ b/src/types/InputFile.cpp
@@ -2,6 +2,9 @@
#include "tgbot/tools/StringTools.h"
#include "tgbot/tools/FileTools.h"
+#include <memory>
+#include <string>
+
using namespace std;
namespace TgBot {