File indexing completed on 2024-04-14 14:31:30

0001 /*
0002     This file is part of the syndication library
0003     SPDX-FileCopyrightText: 2006 Frank Osterfeld <osterfeld@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #ifndef SYNDICATION_CONSTANTS_H
0009 #define SYNDICATION_CONSTANTS_H
0010 
0011 #include "syndication_export.h"
0012 
0013 class QString;
0014 
0015 namespace Syndication
0016 {
0017 SYNDICATION_EXPORT
0018 QString xmlNamespace();
0019 
0020 SYNDICATION_EXPORT
0021 QString xhtmlNamespace();
0022 
0023 SYNDICATION_EXPORT
0024 QString dublinCoreNamespace();
0025 
0026 SYNDICATION_EXPORT
0027 QString contentNameSpace();
0028 
0029 SYNDICATION_EXPORT
0030 QString itunesNamespace();
0031 
0032 /**
0033  * wellformedweb.org's RSS namespace for comment functionality
0034  * "http://wellformedweb.org/CommentAPI/"
0035  */
0036 SYNDICATION_EXPORT
0037 QString commentApiNamespace();
0038 
0039 /**
0040  * "slash" namespace
0041  * http://purl.org/rss/1.0/modules/slash/
0042  */
0043 SYNDICATION_EXPORT
0044 QString slashNamespace();
0045 
0046 } // namespace Syndication
0047 
0048 #endif // SYNDICATION_CONSTANTS_H