Syndication

categoryrss2impl.cpp
1 /*
2  This file is part of the syndication library
3  SPDX-FileCopyrightText: 2006 Frank Osterfeld <[email protected]>
4 
5  SPDX-License-Identifier: LGPL-2.0-or-later
6 */
7 
8 #include "categoryrss2impl.h"
9 
10 #include <QString>
11 
12 namespace Syndication
13 {
14 CategoryRSS2Impl::CategoryRSS2Impl(const Syndication::RSS2::Category &category)
15  : m_category(category)
16 {
17 }
18 
20 {
21  return m_category.isNull();
22 }
23 
25 {
26  return m_category.category();
27 }
28 
30 {
31  return m_category.domain();
32 }
33 
35 {
36  return QString();
37 }
38 
39 } // namespace Syndication
QString category() const
Name of the category.
A category which can be assigned to items or whole feeds.
Definition: rss2/category.h:27
QString scheme() const override
An optional scheme the term is part of.
QString domain() const
optional, identifies the domain of the category, i.e.
bool isNull() const override
returns whether this object is a null category
QString label() const override
An optional human-readable label of the category.
QString term() const override
A term identifying the category, e.g.
Category category(StandardShortcut id)
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Mon May 8 2023 03:57:11 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.