summaryrefslogtreecommitdiff
path: root/include/tgbot/types/GenericReply.h
blob: e86e1126691a67ee6ef2e25253f1eda5dd95f3bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef TGBOT_CPP_GENERICREPLY_H
#define TGBOT_CPP_GENERICREPLY_H

#include <memory>

namespace TgBot {

/**
 * @brief This abstract class is base of all keyboard related events.
 * @ingroup types
 */
class GenericReply {

public:
    typedef std::shared_ptr<GenericReply> Ptr;

    virtual ~GenericReply() { }
};

}

#endif //TGBOT_CPP_GENERICREPLY_H