13 lines
143 B
C++
13 lines
143 B
C++
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
|
|
#include <QtGlobal>
|
|
|
|
class Utils
|
|
{
|
|
public:
|
|
static QString sizeFormat(qint64 bytes);
|
|
};
|
|
|
|
#endif // UTILS_H
|