1/*
2 This file is part of the syndication library
3 SPDX-FileCopyrightText: 2006 Frank Osterfeld <osterfeld@kde.org>
4
5 SPDX-License-Identifier: LGPL-2.0-or-later
6*/
7
8#ifndef SYNDICATION_MAPPERRSS2IMPL_H
9#define SYNDICATION_MAPPERRSS2IMPL_H
10
11#include "feedrss2impl.h"
12
13#include <feed.h>
14#include <mapper.h>
15#include <rss2/document.h>
16#include <specificdocument.h>
17
18namespace Syndication
19{
20/** @internal */
21class RSS2Mapper : public Mapper<Feed>
22{
23 QSharedPointer<Feed> map(SpecificDocumentPtr doc) const override
24 {
25 return QSharedPointer<Feed>(new FeedRSS2Impl(doc.staticCast<RSS2::Document>()));
26 }
27};
28
29} // namespace Syndication
30
31#endif // SYNDICATION_MAPPERRSS2IMPL_H
32

source code of syndication/src/mapper/mapperrss2impl.h