#ifndef COMMON_H #define COMMON_H #include <QObject> class Common : public QObject { Q_OBJECT private: explicit Common(QObject *parent = 0); public: static QString sizeToString(double bytes); }; #endif // COMMON_H