24 lines
256 B
C++
24 lines
256 B
C++
#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);
|
|
|
|
private:
|
|
QLocale m_locale;
|
|
};
|
|
|
|
|
|
#endif
|