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