tgbot-cpp
Loading...
Searching...
No Matches
BotName.h
Go to the documentation of this file.
1#ifndef TGBOT_BOTNAME_H
2#define TGBOT_BOTNAME_H
3
4#include <memory>
5#include <string>
6
7namespace TgBot {
8
14class BotName {
15public:
16 typedef std::shared_ptr<BotName> Ptr;
17
21 std::string name;
22};
23}
24
25#endif //TGBOT_BOTNAME_H
This object represents the bot's name.
Definition BotName.h:14
std::string name
The bot's name.
Definition BotName.h:21
std::shared_ptr< BotName > Ptr
Definition BotName.h:16
Definition Api.h:40