summaryrefslogtreecommitdiff
path: root/include/tgbot/EventHandler.h
blob: 540544e12cca9cf1f77c1935c60821c063351301 (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
#ifndef TGBOT_EVENTHANDLER_H
#define TGBOT_EVENTHANDLER_H

#include "tgbot/EventBroadcaster.h"
#include "tgbot/types/Update.h"
#include "tgbot/tools/StringTools.h"

namespace TgBot {

class EventHandler {

public:
    explicit EventHandler(const EventBroadcaster& broadcaster) : _broadcaster(broadcaster) {
    }

    void handleUpdate(Update::Ptr update) const;

private:
    const EventBroadcaster& _broadcaster;

    void handleMessage(Message::Ptr message) const;
};

}

#endif //TGBOT_EVENTHANDLER_H