summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Parser/GenericPayloadParserFactory.h')
-rw-r--r--Swiften/Parser/GenericPayloadParserFactory.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Swiften/Parser/GenericPayloadParserFactory.h b/Swiften/Parser/GenericPayloadParserFactory.h
index b9a0cfa..fd6d403 100644
--- a/Swiften/Parser/GenericPayloadParserFactory.h
+++ b/Swiften/Parser/GenericPayloadParserFactory.h
@@ -1,11 +1,12 @@
1/* 1/*
2 * Copyright (c) 2010 Isode Limited. 2 * Copyright (c) 2010-2015 Isode Limited.
3 * All rights reserved. 3 * All rights reserved.
4 * See the COPYING file for more information. 4 * See the COPYING file for more information.
5 */ 5 */
6 6
7#pragma once 7#pragma once
8 8
9#include <Swiften/Base/API.h>
9#include <Swiften/Parser/PayloadParserFactory.h> 10#include <Swiften/Parser/PayloadParserFactory.h>
10#include <string> 11#include <string>
11 12
@@ -15,7 +16,7 @@ namespace Swift {
15 * A generic class for PayloadParserFactories that parse a specific payload (given as the template parameter of the class). 16 * A generic class for PayloadParserFactories that parse a specific payload (given as the template parameter of the class).
16 */ 17 */
17 template<typename PARSER_TYPE> 18 template<typename PARSER_TYPE>
18 class GenericPayloadParserFactory : public PayloadParserFactory { 19 class SWIFTEN_API GenericPayloadParserFactory : public PayloadParserFactory {
19 public: 20 public:
20 /** 21 /**
21 * Construct a parser factory that can parse the given top-level tag in the given namespace. 22 * Construct a parser factory that can parse the given top-level tag in the given namespace.