diff options
Diffstat (limited to 'Swiften/Parser/PayloadParsers/SecurityLabelParser.h')
| -rw-r--r-- | Swiften/Parser/PayloadParsers/SecurityLabelParser.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Swiften/Parser/PayloadParsers/SecurityLabelParser.h b/Swiften/Parser/PayloadParsers/SecurityLabelParser.h index 0933fa6..857df6a 100644 --- a/Swiften/Parser/PayloadParsers/SecurityLabelParser.h +++ b/Swiften/Parser/PayloadParsers/SecurityLabelParser.h @@ -1,21 +1,22 @@ /* - * Copyright (c) 2010 Isode Limited. + * Copyright (c) 2010-2015 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once +#include <Swiften/Base/API.h> #include <Swiften/Elements/SecurityLabel.h> #include <Swiften/Parser/GenericPayloadParser.h> namespace Swift { class SerializingParser; - class SecurityLabelParser : public GenericPayloadParser<SecurityLabel> { + class SWIFTEN_API SecurityLabelParser : public GenericPayloadParser<SecurityLabel> { public: SecurityLabelParser(); virtual void handleStartElement(const std::string& element, const std::string&, const AttributeMap& attributes); virtual void handleEndElement(const std::string& element, const std::string&); virtual void handleCharacterData(const std::string& data); |
Swift