blob: be1f14a31c5dbedc7e325f4be169037d4a06a6d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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";
|