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