tgbotxx 1.1.9.2
Telegram Bot C++ Library
Loading...
Searching...
No Matches
IReplyMarkup.hpp
Go to the documentation of this file.
1#pragma once
3
4namespace tgbotxx {
7 struct IReplyMarkup {
8 virtual nl::json toJson() const = 0;
9 virtual void fromJson(const nl::json&) = 0;
10 virtual ~IReplyMarkup() = default;
11 };
12}
The interface of reply markup objects InlineKeyboardMarkup, ReplyKeyboardMarkup, ReplyKeyboardRemove ...
virtual void fromJson(const nl::json &)=0
virtual ~IReplyMarkup()=default
virtual nl::json toJson() const =0