filemanager/helper/datehelper.h

17 lines
269 B
C
Raw Permalink Normal View History

2021-04-21 19:24:10 -07:00
#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