diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-07-09 22:31:21 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-07-09 22:31:21 -0400 |
commit | 229555939d697700e988f09f04871bde55adc5a7 (patch) | |
tree | 03e040a0c4c9e49d75d102982e9bae7334077e5f /src/remoteauth/remoteauthclient.hpp | |
parent | b5d85f4958601ef512dfc9fe302b4b9bfcda25f1 (diff) | |
download | abaddon-portaudio-229555939d697700e988f09f04871bde55adc5a7.tar.gz abaddon-portaudio-229555939d697700e988f09f04871bde55adc5a7.zip |
make qrcodegen optional wow!!!
Diffstat (limited to 'src/remoteauth/remoteauthclient.hpp')
-rw-r--r-- | src/remoteauth/remoteauthclient.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/remoteauth/remoteauthclient.hpp b/src/remoteauth/remoteauthclient.hpp index c2e00f3..6ab6dbb 100644 --- a/src/remoteauth/remoteauthclient.hpp +++ b/src/remoteauth/remoteauthclient.hpp @@ -1,4 +1,9 @@ #pragma once + +#ifdef WITH_QRLOGIN + +// clang-format off + #include <string> #include <queue> #include <spdlog/logger.h> @@ -6,6 +11,8 @@ #include "discord/waiter.hpp" #include "discord/websocket.hpp" +// clang-format on + class RemoteAuthClient { public: RemoteAuthClient(); @@ -84,3 +91,5 @@ private: type_signal_token m_signal_token; type_signal_error m_signal_error; }; + +#endif |