filemanager/helper/datehelper.h
2021-04-22 10:24:10 +08:00

16 lines
269 B
C++

#ifndef DATEHELPER_H
#define DATEHELPER_H
#include <QObject>
class DateHelper : public QObject
{
Q_OBJECT
public:
explicit DateHelper(QObject *parent = nullptr);
Q_INVOKABLE static QString friendlyTime(const QDateTime &time);
};
#endif // DATEHELPER_H