File indexing completed on 2024-04-21 04:00:59

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 #include "constants.h"
0009 
0010 #include <QString>
0011 
0012 namespace Syndication
0013 {
0014 namespace Atom
0015 {
0016 QString atom1Namespace()
0017 {
0018     return QStringLiteral("http://www.w3.org/2005/Atom");
0019 }
0020 
0021 QString atom0_3Namespace()
0022 {
0023     return QStringLiteral("http://purl.org/atom/ns#");
0024 }
0025 
0026 } // namespace Atom
0027 } // namespace Syndication