diff options
Diffstat (limited to 'Swiften/Parser/GenericPayloadParser.h')
-rw-r--r-- | Swiften/Parser/GenericPayloadParser.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Swiften/Parser/GenericPayloadParser.h b/Swiften/Parser/GenericPayloadParser.h index ea0a7bd..b72189e 100644 --- a/Swiften/Parser/GenericPayloadParser.h +++ b/Swiften/Parser/GenericPayloadParser.h @@ -1,42 +1,39 @@ /* - * Copyright (c) 2010-2016 Isode Limited. + * Copyright (c) 2010-2017 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include <memory> #include <Swiften/Base/API.h> #include <Swiften/Parser/PayloadParser.h> namespace Swift { - - class FormParser; - /** * A generic payload parser for payloads of the given type. * * This class provides getPayloadInternal() for retrieving the actual * payload. */ template<typename PAYLOAD_TYPE> class GenericPayloadParser : public PayloadParser { public: GenericPayloadParser() : PayloadParser() { payload_ = std::make_shared<PAYLOAD_TYPE>(); } virtual std::shared_ptr<Payload> getPayload() const { return payload_; } virtual std::shared_ptr<PAYLOAD_TYPE> getPayloadInternal() const { return payload_; } private: std::shared_ptr<PAYLOAD_TYPE> payload_; }; } |