summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Parser/PayloadParsers/DeliveryReceiptRequestParser.h')
-rw-r--r--Swiften/Parser/PayloadParsers/DeliveryReceiptRequestParser.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/Swiften/Parser/PayloadParsers/DeliveryReceiptRequestParser.h b/Swiften/Parser/PayloadParsers/DeliveryReceiptRequestParser.h
index 55f7997..5bf27fa 100644
--- a/Swiften/Parser/PayloadParsers/DeliveryReceiptRequestParser.h
+++ b/Swiften/Parser/PayloadParsers/DeliveryReceiptRequestParser.h
@@ -1,19 +1,26 @@
/*
* 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/Elements/DeliveryReceiptRequest.h>
#include <Swiften/Parser/GenericPayloadParser.h>
namespace Swift {
- class DeliveryReceiptRequestParser : public GenericPayloadParser<DeliveryReceiptRequest> {
+ class SWIFTEN_API DeliveryReceiptRequestParser : public GenericPayloadParser<DeliveryReceiptRequest> {
public:
DeliveryReceiptRequestParser();
virtual void handleStartElement(const std::string&, const std::string&, const AttributeMap&);
virtual void handleEndElement(const std::string&, const std::string&);
virtual void handleCharacterData(const std::string& data);