common.h 232 B

12345678910111213141516171819
  1. #ifndef COMMON_H
  2. #define COMMON_H
  3. #include <QObject>
  4. class Common : public QObject
  5. {
  6. Q_OBJECT
  7. private:
  8. explicit Common(QObject *parent = 0);
  9. public:
  10. static QString sizeToString(double bytes);
  11. };
  12. #endif // COMMON_H