blob: 3431acac7b654dbd024b0f147e67d29d1b3b3adc (
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_CHATMEMBERLEFT_H
#define TGBOT_CHATMEMBERLEFT_H
#include "tgbot/types/ChatMember.h"
#include <memory>
namespace TgBot {
/**
* @brief Represents a chat member that isn't currently a member of the chat, but may join it themselves.
*
* @ingroup types
*/
class ChatMemberLeft : public ChatMember {
public:
static const std::string STATUS;
typedef std::shared_ptr<ChatMemberLeft> Ptr;
ChatMemberLeft() {
this->status = STATUS;
}
};
}
#endif //TGBOT_CHATMEMBERLEFT_H
|