diff options
Diffstat (limited to 'Swiften/SASL/EXTERNALClientAuthenticator.h')
-rw-r--r-- | Swiften/SASL/EXTERNALClientAuthenticator.h | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/Swiften/SASL/EXTERNALClientAuthenticator.h b/Swiften/SASL/EXTERNALClientAuthenticator.h index b986295..e42e3fd 100644 --- a/Swiften/SASL/EXTERNALClientAuthenticator.h +++ b/Swiften/SASL/EXTERNALClientAuthenticator.h @@ -1,23 +1,24 @@ /* - * Copyright (c) 2012 Remko Tronçon - * Licensed under the GNU General Public License v3. - * See Documentation/Licenses/GPLv3.txt for more information. + * Copyright (c) 2012-2016 Isode Limited. + * All rights reserved. + * See the COPYING file for more information. */ #pragma once -#include <Swiften/SASL/ClientAuthenticator.h> +#include <Swiften/Base/API.h> #include <Swiften/Base/ByteArray.h> +#include <Swiften/SASL/ClientAuthenticator.h> namespace Swift { - class EXTERNALClientAuthenticator : public ClientAuthenticator { - public: - EXTERNALClientAuthenticator(); + class SWIFTEN_API EXTERNALClientAuthenticator : public ClientAuthenticator { + public: + EXTERNALClientAuthenticator(); - virtual boost::optional<SafeByteArray> getResponse() const; - virtual bool setChallenge(const boost::optional<ByteArray>&); + virtual boost::optional<SafeByteArray> getResponse() const; + virtual bool setChallenge(const boost::optional<ByteArray>&); - private: - bool finished; - }; + private: + bool finished; + }; } |