summaryrefslogtreecommitdiff
path: root/include/tgbot/Api.h
diff options
context:
space:
mode:
authorEgor Pugin <egor.pugin@gmail.com>2020-03-22 20:12:33 +0300
committerEgor Pugin <egor.pugin@gmail.com>2020-03-22 20:12:33 +0300
commit0e9a5bb427757b8b6ecb2734e602fe5bc7e6354b (patch)
tree4aeb54b0be115bede2191a3bb2d829245955a881 /include/tgbot/Api.h
parent58620856faf03e36fd57fa50362fc32f4b8cb9cb (diff)
Fix header order.
Diffstat (limited to 'include/tgbot/Api.h')
-rw-r--r--include/tgbot/Api.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/tgbot/Api.h b/include/tgbot/Api.h
index ac37231..04238ff 100644
--- a/include/tgbot/Api.h
+++ b/include/tgbot/Api.h
@@ -1,13 +1,6 @@
#ifndef TGBOT_CPP_API_H
#define TGBOT_CPP_API_H
-#include <cstdint>
-#include <string>
-#include <vector>
-
-#include <boost/property_tree/ptree.hpp>
-#include <boost/variant.hpp>
-
#include "tgbot/TgTypeParser.h"
#include "tgbot/net/HttpClient.h"
#include "tgbot/net/HttpReqArg.h"
@@ -28,6 +21,13 @@
#include "tgbot/types/LabeledPrice.h"
#include "tgbot/types/ShippingOption.h"
+#include <boost/property_tree/ptree.hpp>
+#include <boost/variant.hpp>
+
+#include <cstdint>
+#include <string>
+#include <vector>
+
namespace TgBot {
class Bot;