1 | // Copyright (C) 2023 basysKom GmbH, opensource@basyskom.com |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | |
4 | #pragma once |
5 | |
6 | #include <QtCore/qstring.h> |
7 | |
8 | namespace Util |
9 | { |
10 | QString indent(int level); |
11 | QString lineBreak(int n = 1); |
12 | |
13 | QString removeNamespace(const QString &typeName); |
14 | QString lowerFirstLetter(const QString &temp); |
15 | } |
16 |