diff options
Diffstat (limited to 'src/remoteauth')
-rw-r--r-- | src/remoteauth/remoteauthclient.cpp | 6 | ||||
-rw-r--r-- | src/remoteauth/remoteauthclient.hpp | 7 | ||||
-rw-r--r-- | src/remoteauth/remoteauthdialog.cpp | 4 | ||||
-rw-r--r-- | src/remoteauth/remoteauthdialog.hpp | 3 |
4 files changed, 18 insertions, 2 deletions
diff --git a/src/remoteauth/remoteauthclient.cpp b/src/remoteauth/remoteauthclient.cpp index 5103c8d..fb68888 100644 --- a/src/remoteauth/remoteauthclient.cpp +++ b/src/remoteauth/remoteauthclient.cpp @@ -3,10 +3,14 @@ // clang-format off #include "remoteauthclient.hpp" -#include "http.hpp" + #include <nlohmann/json.hpp> #include <spdlog/fmt/bin_to_hex.h> +#include "abaddon.hpp" +#include "http.hpp" + + // clang-format on RemoteAuthClient::RemoteAuthClient() diff --git a/src/remoteauth/remoteauthclient.hpp b/src/remoteauth/remoteauthclient.hpp index 6ab6dbb..d911474 100644 --- a/src/remoteauth/remoteauthclient.hpp +++ b/src/remoteauth/remoteauthclient.hpp @@ -4,12 +4,17 @@ // clang-format off +#include <optional> #include <string> #include <queue> + #include <spdlog/logger.h> -#include "ssl.hpp" + +#include "discord/errors.hpp" +#include "discord/snowflake.hpp" #include "discord/waiter.hpp" #include "discord/websocket.hpp" +#include "ssl.hpp" // clang-format on diff --git a/src/remoteauth/remoteauthdialog.cpp b/src/remoteauth/remoteauthdialog.cpp index 7975b4e..aa0cf38 100644 --- a/src/remoteauth/remoteauthdialog.cpp +++ b/src/remoteauth/remoteauthdialog.cpp @@ -3,8 +3,12 @@ // clang-format off #include "remoteauthdialog.hpp" + +#include <gdkmm/pixbufloader.h> #include <qrcodegen.hpp> +#include "abaddon.hpp" + // clang-format on RemoteAuthDialog::RemoteAuthDialog(Gtk::Window &parent) diff --git a/src/remoteauth/remoteauthdialog.hpp b/src/remoteauth/remoteauthdialog.hpp index 465a188..b889b58 100644 --- a/src/remoteauth/remoteauthdialog.hpp +++ b/src/remoteauth/remoteauthdialog.hpp @@ -5,6 +5,9 @@ // clang-format off #include <gtkmm/dialog.h> +#include <gtkmm/image.h> +#include <gtkmm/label.h> + #include "remoteauthclient.hpp" // clang-format on |