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