/* This file is part of the syndication library SPDX-FileCopyrightText: 2006 Frank Osterfeld SPDX-License-Identifier: LGPL-2.0-or-later */ #ifndef SYNDICATION_MAPPERRSS2IMPL_H #define SYNDICATION_MAPPERRSS2IMPL_H #include "feedrss2impl.h" #include #include #include #include namespace Syndication { /** @internal */ class RSS2Mapper : public Mapper { QSharedPointer map(SpecificDocumentPtr doc) const override { return QSharedPointer(new FeedRSS2Impl(doc.staticCast())); } }; } // namespace Syndication #endif // SYNDICATION_MAPPERRSS2IMPL_H