summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEgor Pugin <egor.pugin@gmail.com>2020-03-14 17:56:27 +0300
committerEgor Pugin <egor.pugin@gmail.com>2020-03-14 17:56:27 +0300
commit38e4b3867b50065aeb6110fac0ce001031242349 (patch)
treeffa3de27c79f1df1c40e9b0cdb9c84979df58ad5 /src
parenta7a90aaa572f0a6e06697d9a09089dbffbbda5f0 (diff)
Move Bot ctor in its own file.
Diffstat (limited to 'src')
-rw-r--r--src/Bot.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Bot.cpp b/src/Bot.cpp
new file mode 100644
index 0000000..b1e1ea5
--- /dev/null
+++ b/src/Bot.cpp
@@ -0,0 +1,14 @@
+#include "tgbot/Bot.h"
+
+#include "tgbot/EventBroadcaster.h"
+
+namespace TgBot {
+
+Bot::Bot(std::string token, const HttpClient& httpClient)
+ : _token(std::move(token))
+ , _api(_token, httpClient)
+ , _eventBroadcaster(std::make_unique<EventBroadcaster>())
+ , _eventHandler(getEvents()) {
+}
+
+}