diff options
Diffstat (limited to 'Swiften/Parser/PayloadParsers/S5BProxyRequestParser.h')
| -rw-r--r-- | Swiften/Parser/PayloadParsers/S5BProxyRequestParser.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Swiften/Parser/PayloadParsers/S5BProxyRequestParser.h b/Swiften/Parser/PayloadParsers/S5BProxyRequestParser.h index 0bf1a26..408bb5a 100644 --- a/Swiften/Parser/PayloadParsers/S5BProxyRequestParser.h +++ b/Swiften/Parser/PayloadParsers/S5BProxyRequestParser.h @@ -1,22 +1,29 @@ /* * Copyright (c) 2011 Tobias Markmann * Licensed under the simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ +/* + * Copyright (c) 2015 Isode Limited. + * All rights reserved. + * See the COPYING file for more information. + */ + #pragma once #include <string> +#include <Swiften/Base/API.h> #include <Swiften/Elements/S5BProxyRequest.h> #include <Swiften/Parser/GenericPayloadParser.h> namespace Swift { -class S5BProxyRequestParser : public GenericPayloadParser<S5BProxyRequest> { +class SWIFTEN_API S5BProxyRequestParser : public GenericPayloadParser<S5BProxyRequest> { public: S5BProxyRequestParser(); virtual ~S5BProxyRequestParser(); virtual void handleStartElement(const std::string& element, const std::string&, const AttributeMap& attributes); virtual void handleEndElement(const std::string& element, const std::string&); |
Swift