diff options
Diffstat (limited to 'Swiften/Parser/PayloadParsers/DeliveryReceiptRequestParserFactory.h')
| -rw-r--r-- | Swiften/Parser/PayloadParsers/DeliveryReceiptRequestParserFactory.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Swiften/Parser/PayloadParsers/DeliveryReceiptRequestParserFactory.h b/Swiften/Parser/PayloadParsers/DeliveryReceiptRequestParserFactory.h index 9bd98c2..509db63 100644 --- a/Swiften/Parser/PayloadParsers/DeliveryReceiptRequestParserFactory.h +++ b/Swiften/Parser/PayloadParsers/DeliveryReceiptRequestParserFactory.h @@ -1,21 +1,28 @@ /* * Copyright (c) 2011 Tobias Markmann * Licensed under the BSD license. * See http://www.opensource.org/licenses/bsd-license.php for more information. */ +/* + * Copyright (c) 2015 Isode Limited. + * All rights reserved. + * See the COPYING file for more information. + */ + #pragma once +#include <Swiften/Base/API.h> #include <Swiften/Parser/PayloadParserFactory.h> #include <Swiften/Parser/PayloadParsers/DeliveryReceiptRequestParser.h> namespace Swift { class PayloadParserFactoryCollection; - class DeliveryReceiptRequestParserFactory : public PayloadParserFactory { + class SWIFTEN_API DeliveryReceiptRequestParserFactory : public PayloadParserFactory { public: DeliveryReceiptRequestParserFactory() { } virtual bool canParse(const std::string& element, const std::string& ns, const AttributeMap&) const { return ns == "urn:xmpp:receipts" && element == "request"; |
Swift