File indexing completed on 2024-05-19 04:29:19

0001 /*
0002    This file is part of the KDE project
0003    SPDX-FileCopyrightText: 2000 Werner Trobin <trobin@kde.org>
0004 
0005    SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #ifndef KIS_TEMPLATES_H
0009 #define KIS_TEMPLATES_H
0010 
0011 class QString;
0012 
0013 namespace KisTemplates
0014 {
0015     /**
0016      * Removes all spaces from the given string, not just from
0017      * start and end.
0018      */
0019      QString trimmed(const QString &string);
0020 }
0021 
0022 #endif