tgbot-cpp
Loading...
Searching...
No Matches
BotCommandScope.h
Go to the documentation of this file.
1#ifndef TGBOT_BOTCOMMANDSCOPE_H
2#define TGBOT_BOTCOMMANDSCOPE_H
3
4#include <memory>
5#include <string>
6
7namespace TgBot {
8
17public:
18 typedef std::shared_ptr<BotCommandScope> Ptr;
19
21
22 virtual ~BotCommandScope() {}
23
27 std::string type;
28};
29}
30
31#endif //TGBOT_BOTCOMMANDSCOPE_H
This abstract class is base of all bot command scopes.
std::string type
Scope type.
std::shared_ptr< BotCommandScope > Ptr
Definition Api.h:39