diff options
Diffstat (limited to 'Swiften/Parser/StartTLSFailureParser.h')
-rw-r--r-- | Swiften/Parser/StartTLSFailureParser.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/Swiften/Parser/StartTLSFailureParser.h b/Swiften/Parser/StartTLSFailureParser.h index 41ecafb..2f13e71 100644 --- a/Swiften/Parser/StartTLSFailureParser.h +++ b/Swiften/Parser/StartTLSFailureParser.h @@ -1,17 +1,18 @@ /* - * Copyright (c) 2010 Remko Tronçon - * Licensed under the GNU General Public License v3. - * See Documentation/Licenses/GPLv3.txt for more information. + * Copyright (c) 2010-2016 Isode Limited. + * All rights reserved. + * See the COPYING file for more information. */ #pragma once -#include <Swiften/Parser/GenericElementParser.h> +#include <Swiften/Base/API.h> #include <Swiften/Elements/StartTLSFailure.h> +#include <Swiften/Parser/GenericElementParser.h> namespace Swift { - class StartTLSFailureParser : public GenericElementParser<StartTLSFailure> { - public: - StartTLSFailureParser() : GenericElementParser<StartTLSFailure>() {} - }; + class SWIFTEN_API StartTLSFailureParser : public GenericElementParser<StartTLSFailure> { + public: + StartTLSFailureParser() : GenericElementParser<StartTLSFailure>() {} + }; } |