File indexing completed on 2024-11-24 04:45:06

0001 /*
0002     SPDX-FileCopyrightText: 2018 Volker Krause <vkrause@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "util.h"
0008 
0009 #include <QString>
0010 
0011 using namespace KItinerary::Generator;
0012 
0013 bool Util::containsOnlyLetters(const QString& s)
0014 {
0015     for (const auto c : s) {
0016         if (c < QLatin1Char('A') || c > QLatin1Char('Z')) {
0017             return false;
0018         }
0019     }
0020     return true;
0021 }