moment/src/utils.h

25 lines
276 B
C
Raw Normal View History

#ifndef UTILS_H
#define UTILS_H
#include <QObject>
#include <QLocale>
class Utils : public QObject {
Q_OBJECT
public:
Utils();
public slots:
QString formattedBytes(qint64 bytes, int precision = 2);
2019-12-04 21:22:04 +11:00
QString uuid();
private:
QLocale m_locale;
};
#endif