File indexing completed on 2024-04-28 15:35:51

0001 // SPDX-FileCopyrightText: 2022 Carl Schwan <carl@carlschwan.eu>
0002 // SPDX-License-Identifier: LGPL-2.0-or-later
0003 
0004 #pragma once
0005 
0006 #include <QObject>
0007 #include <KFormat>
0008 
0009 class Format : public QObject
0010 {
0011     Q_OBJECT
0012 
0013 public:
0014     Q_INVOKABLE QString formatDuration(quint64 msecs) const;
0015 };