File indexing completed on 2025-02-16 04:57:43
0001 /* 0002 SPDX-FileCopyrightText: 2011-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include "templateparser_private_export.h" 0010 #include <QString> 0011 #include <QStringList> 0012 namespace TemplateParser 0013 { 0014 namespace Util 0015 { 0016 [[nodiscard]] TEMPLATEPARSER_TESTS_EXPORT QStringList keywords(); 0017 [[nodiscard]] TEMPLATEPARSER_TESTS_EXPORT QStringList keywordsWithArgs(); 0018 [[nodiscard]] TEMPLATEPARSER_TESTS_EXPORT QString removeSpaceAtBegin(const QString &selection); 0019 } 0020 }