diff options
author | Oleg Morozenkov <omorozenkov@gmail.com> | 2015-08-11 22:52:05 +0300 |
---|---|---|
committer | Oleg Morozenkov <omorozenkov@gmail.com> | 2015-08-11 22:52:05 +0300 |
commit | 7b3fa406eb228a00ef9f053bd2177d53b61b1d3d (patch) | |
tree | 8de1665685afcd20bb51ef8e88475d9c5776731a | |
parent | 3447b4578c673f625a3fcd006ddf73cbe3505e48 (diff) |
Global header file
-rw-r--r-- | include/tgbot/tgbot.h (renamed from include/tgbot/doxygenMain.h) | 41 |
1 files changed, 38 insertions, 3 deletions
diff --git a/include/tgbot/doxygenMain.h b/include/tgbot/tgbot.h index 3216ae8..21224c8 100644 --- a/include/tgbot/doxygenMain.h +++ b/include/tgbot/tgbot.h @@ -20,8 +20,43 @@ * SOFTWARE. */ -#ifndef TGBOT_DOXYGENMAIN_H -#define TGBOT_DOXYGENMAIN_H +#ifndef TGBOT_TGBOT_H +#define TGBOT_TGBOT_H + +#include "tgbot/Bot.h" +#include "tgbot/Api.h" +#include "tgbot/TgException.h" +#include "tgbot/TgTypeParser.h" +#include "tgbot/EventBroadcaster.h" +#include "tgbot/EventHandler.h" +#include "tgbot/types/Audio.h" +#include "tgbot/types/Contact.h" +#include "tgbot/types/Document.h" +#include "tgbot/types/ForceReply.h" +#include "tgbot/types/GenericChat.h" +#include "tgbot/types/GenericReply.h" +#include "tgbot/types/GroupChat.h" +#include "tgbot/types/InputFile.h" +#include "tgbot/types/Location.h" +#include "tgbot/types/Message.h" +#include "tgbot/types/PhotoSize.h" +#include "tgbot/types/ReplyKeyboardHide.h" +#include "tgbot/types/ReplyKeyboardMarkup.h" +#include "tgbot/types/Sticker.h" +#include "tgbot/types/Update.h" +#include "tgbot/types/User.h" +#include "tgbot/types/UserProfilePhotos.h" +#include "tgbot/types/Video.h" +#include "tgbot/tools/StringTools.h" +#include "tgbot/net/HttpClient.h" +#include "tgbot/net/HttpParser.h" +#include "tgbot/net/HttpReqArg.h" +#include "tgbot/net/HttpServer.h" +#include "tgbot/net/TgLongPoll.h" +#include "tgbot/net/TgWebhookLocalServer.h" +#include "tgbot/net/TgWebhookServer.h" +#include "tgbot/net/TgWebhookTcpServer.h" +#include "tgbot/net/Url.h" /** * @defgroup general @@ -59,4 +94,4 @@ * [The MIT License](http://opensource.org/licenses/MIT) */ -#endif //TGBOT_DOXYGENMAIN_H +#endif //TGBOT_TGBOT_H |