diff options
author | Egor Pugin <egor.pugin@gmail.com> | 2020-03-22 20:12:33 +0300 |
---|---|---|
committer | Egor Pugin <egor.pugin@gmail.com> | 2020-03-22 20:12:33 +0300 |
commit | 0e9a5bb427757b8b6ecb2734e602fe5bc7e6354b (patch) | |
tree | 4aeb54b0be115bede2191a3bb2d829245955a881 /include/tgbot/EventBroadcaster.h | |
parent | 58620856faf03e36fd57fa50362fc32f4b8cb9cb (diff) |
Fix header order.
Diffstat (limited to 'include/tgbot/EventBroadcaster.h')
-rw-r--r-- | include/tgbot/EventBroadcaster.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/tgbot/EventBroadcaster.h b/include/tgbot/EventBroadcaster.h index 978a6fe..8d0d319 100644 --- a/include/tgbot/EventBroadcaster.h +++ b/include/tgbot/EventBroadcaster.h @@ -1,17 +1,17 @@ #ifndef TGBOT_EVENTBROADCASTER_H #define TGBOT_EVENTBROADCASTER_H -#include <string> -#include <functional> -#include <vector> -#include <unordered_map> - #include "tgbot/export.h" #include "tgbot/types/Message.h" #include "tgbot/types/InlineQuery.h" #include "tgbot/types/ChosenInlineResult.h" #include "tgbot/types/CallbackQuery.h" +#include <string> +#include <functional> +#include <vector> +#include <unordered_map> + namespace TgBot { class EventHandler; |