File indexing completed on 2024-09-29 03:41:22
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_ATOM_CONSTANTS_H 0009 #define SYNDICATION_ATOM_CONSTANTS_H 0010 0011 #include "../syndication_export.h" 0012 0013 class QString; 0014 0015 namespace Syndication 0016 { 0017 namespace Atom 0018 { 0019 /** 0020 * namespace used by Atom 1.0 elements 0021 */ 0022 SYNDICATION_EXPORT 0023 QString atom1Namespace(); 0024 0025 /** 0026 * namespace used by Atom 0.3 elements 0027 */ 0028 SYNDICATION_EXPORT 0029 QString atom0_3Namespace(); 0030 0031 } // namespace Atom 0032 } // namespace Syndication 0033 0034 #endif // SYNDICATION_ATOM_CONSTANTS_H