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{
17/*!
18 *
19 */
20SYNDICATION_EXPORT
21QString xmlNamespace();
22
23/*!
24 *
25 */
26SYNDICATION_EXPORT
27QString xhtmlNamespace();
28
29/*!
30 *
31 */
32SYNDICATION_EXPORT
33QString dublinCoreNamespace();
34
35/*!
36 *
37 */
38SYNDICATION_EXPORT
39QString contentNameSpace();
40
41/*!
42 *
43 */
44SYNDICATION_EXPORT
45QString itunesNamespace();
46
47/*!
48 * wellformedweb.org's RSS namespace for comment functionality
49 * "http://wellformedweb.org/CommentAPI/"
50 */
51SYNDICATION_EXPORT
52QString commentApiNamespace();
53
54/*!
55 * "slash" namespace
56 * http://purl.org/rss/1.0/modules/slash/
57 */
58SYNDICATION_EXPORT
59QString slashNamespace();
60
61} // namespace Syndication
62
63#endif // SYNDICATION_CONSTANTS_H
64

source code of syndication/src/constants.h