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_export.h"
0010 #include <QString>
0011 
0012 namespace TemplateParser
0013 {
0014 namespace Util
0015 {
0016 TEMPLATEPARSER_EXPORT void deleteTemplate(const QString &id);
0017 [[nodiscard]] TEMPLATEPARSER_EXPORT QString getLastNameFromEmail(const QString &str);
0018 [[nodiscard]] TEMPLATEPARSER_EXPORT QString getFirstNameFromEmail(const QString &str);
0019 }
0020 }