summaryrefslogtreecommitdiff
path: root/test/InlineQueryResult.cpp
diff options
context:
space:
mode:
authorAndrea Giove <andreagiove@outlook.com>2016-03-27 18:24:03 +0200
committerAndrea Giove <andreagiove@outlook.com>2016-03-27 18:24:03 +0200
commit405d973af3460ee2860d01c7169cf6749fa98b07 (patch)
tree33f5227ecf142138709378d3ef95e0cfee29519c /test/InlineQueryResult.cpp
parentd2baea74a0ac09db992ab36a861d09caccdab697 (diff)
Fixed compilation errors
Diffstat (limited to 'test/InlineQueryResult.cpp')
-rw-r--r--test/InlineQueryResult.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/InlineQueryResult.cpp b/test/InlineQueryResult.cpp
new file mode 100644
index 0000000..be1f14a
--- /dev/null
+++ b/test/InlineQueryResult.cpp
@@ -0,0 +1,16 @@
+//
+// Created by Andrea Giove on 27/03/16.
+//
+#include "tgbot/types/InlineQueryResultArticle.h"
+#include "tgbot/types/InlineQueryResultGif.h"
+#include "tgbot/types/InlineQueryResultMpeg4Gif.h"
+#include "tgbot/types/InlineQueryResultPhoto.h"
+#include "tgbot/types/InlineQueryResultVideo.h"
+
+using namespace TgBot;
+
+const std::string InlineQueryResultArticle::TYPE = "article";
+const std::string InlineQueryResultGif::TYPE = "gif";
+const std::string InlineQueryResultMpeg4Gif::TYPE = "mpeg4_gif";
+const std::string InlineQueryResultPhoto::TYPE = "photo";
+const std::string InlineQueryResultVideo::TYPE = "video";