diff options
author | Oleg Morozenkov <omorozenkov@gmail.com> | 2015-07-27 21:11:55 +0300 |
---|---|---|
committer | Oleg Morozenkov <omorozenkov@gmail.com> | 2015-07-27 21:11:55 +0300 |
commit | 6a52fe5335ec40be52f32b88b8d8836f405b4b53 (patch) | |
tree | 0077eb205d4e7ab608dc49b32b7a7a8cb84a4a05 /include | |
parent | 3f7a10f82567a0be04a424e0ddc360a73670c9d7 (diff) |
Fix documentation
Diffstat (limited to 'include')
-rw-r--r-- | include/tgbot/doxygenMain.h | 33 |
1 files changed, 1 insertions, 32 deletions
diff --git a/include/tgbot/doxygenMain.h b/include/tgbot/doxygenMain.h index 9478b4f..d6256b8 100644 --- a/include/tgbot/doxygenMain.h +++ b/include/tgbot/doxygenMain.h @@ -49,41 +49,10 @@ make -j4 * That's all. All you have to do now is just link compiled library to your project. * * @section Samples - * Simple echo bot which sends everything it recieves: - * @code{.cpp} -int main() { - TgBot::Bot bot("PLACE YOUR TOKEN HERE"); - bot.getEvents().onCommand("start", [&bot](Message::Ptr message) { - bot.getApi().sendMessage(message->chat->id, "Hi!"); - }); - bot.getEvents().onAnyMessage([&bot](Message::Ptr message) { - printf("User wrote %s\n", message->text.c_str()); - if (StringTools::startsWith(message->text, "/start")) { - return; - } - bot.getApi().sendMessage(message->chat->id, "Your message is: " + message->text); - }); - - try { - printf("Bot username: %s\n", bot.getApi().getMe()->username.c_str()); - - TgBot::TgLongPoll longPoll(bot); - while (true) { - printf("Long poll started\n"); - longPoll.start(); - } - } catch (TgBot::TgException& e) { - printf("error: %s\n", e.what()); - } - - return 0; -} - * @endcode - * * All samples are located [here](https://github.com/reo7sp/tgbot-cpp/tree/master/samples) * * @section Feedback - * Feel free to [https://github.com/reo7sp/tgbot-cpp/issues](create new issues on GitHub) or [https://telegram.me/Reo_SP](contact me on Telegram) + * Feel free to [create new issues on GitHub](https://github.com/reo7sp/tgbot-cpp/issues) or [contact me on Telegram](https://telegram.me/Reo_SP) */ #endif //TGBOT_DOXYGENMAIN_H |