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