blob: 6bdccd724770348be85846f645eb61d32537041d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef TGBOT_CHATMEMBERMEMBER_H
#define TGBOT_CHATMEMBERMEMBER_H
#include "tgbot/types/ChatMember.h"
#include <memory>
namespace TgBot {
/**
* @brief Represents a chat member that has no additional privileges or restrictions.
*
* @ingroup types
*/
class ChatMemberMember : public ChatMember {
public:
static const std::string STATUS;
typedef std::shared_ptr<ChatMemberMember> Ptr;
ChatMemberMember() {
this->status = STATUS;
}
};
}
#endif //TGBOT_CHATMEMBERMEMBER_H
|