новые иконки в OpenBoard
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OpenBoard/src/frameworks/UBStringUtils.h

27 lines
471 B

#ifndef UBSTRINGUTILS_H
#define UBSTRINGUTILS_H
#include <QtCore>
class UBStringUtils
{
private:
UBStringUtils() {}
~UBStringUtils() {}
public:
static QStringList sortByLastDigit(const QStringList& source);
static QString netxDigitizedName(const QString& source);
static QString toCanonicalUuid(const QUuid& uuid);
static QString toUtcIsoDateTime(const QDateTime& dateTime);
};
#endif // UBSTRINGUTILS_H