Syndication

imagerdfimpl.cpp
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#include "imagerdfimpl.h"
9
10namespace Syndication
11{
12ImageRDFImpl::ImageRDFImpl(const Syndication::RDF::Image &image)
13 : m_image(image)
14{
15}
16
17bool ImageRDFImpl::isNull() const
18{
19 return m_image.isNull();
20}
21
22QString ImageRDFImpl::url() const
23{
24 return m_image.url();
25}
26
27QString ImageRDFImpl::title() const
28{
29 return m_image.title();
30}
31
32QString ImageRDFImpl::link() const
33{
34 return m_image.link();
35}
36
37QString ImageRDFImpl::description() const
38{
39 return QString();
40}
41
42uint ImageRDFImpl::height() const
43{
44 return 0;
45}
46
47uint ImageRDFImpl::width() const
48{
49 return 0;
50}
51
52} // namespace Syndication
An image to be associated with an HTML rendering of the channel.
Definition rdf/image.h:27
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:14:15 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.