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_CONSTANTS_H
9#define SYNDICATION_CONSTANTS_H
10
11#include "syndication_export.h"
12
13class QString;
14
15namespace Syndication
16{
17SYNDICATION_EXPORT
18QString xmlNamespace();
19
20SYNDICATION_EXPORT
21QString xhtmlNamespace();
22
23SYNDICATION_EXPORT
24QString dublinCoreNamespace();
25
26SYNDICATION_EXPORT
27QString contentNameSpace();
28
29SYNDICATION_EXPORT
30QString itunesNamespace();
31
32/**
33 * wellformedweb.org's RSS namespace for comment functionality
34 * "http://wellformedweb.org/CommentAPI/"
35 */
36SYNDICATION_EXPORT
37QString commentApiNamespace();
38
39/**
40 * "slash" namespace
41 * http://purl.org/rss/1.0/modules/slash/
42 */
43SYNDICATION_EXPORT
44QString slashNamespace();
45
46} // namespace Syndication
47
48#endif // SYNDICATION_CONSTANTS_H
49

source code of syndication/src/constants.h