mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 06:44:18 +00:00
19 lines
332 B
C++
19 lines
332 B
C++
/*
|
|
SPDX-FileCopyrightText: 2022 Popov Eugene <popov895@ukr.net>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
class Utils
|
|
{
|
|
public:
|
|
/**
|
|
* Returns a simplified text of a maximum length of maxLength
|
|
*/
|
|
static QString simplifiedText(const QString &text, int maxLength);
|
|
};
|