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.
22 lines
548 B
22 lines
548 B
/* |
|
exampleutility.h |
|
SPDX-FileCopyrightText: 2022 Han Young <hanyoung@protonmail.com> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include <KLocalizedString> |
|
#include <QDateTime> |
|
#include <QLocale> |
|
|
|
class Utility |
|
{ |
|
public: |
|
static QString numericExample(const QLocale &locale); |
|
static QString timeExample(const QLocale &locale); |
|
static QString shortTimeExample(const QLocale &locale); |
|
static QString measurementExample(const QLocale &locale); |
|
static QString monetaryExample(const QLocale &locale); |
|
};
|
|
|