Files
oak-editor/app/common/tohex.h
T
2022-01-22 17:16:07 -08:00

18 lines
223 B
C++

#ifndef TOHEX_H
#define TOHEX_H
#include <QString>
#include <QtGlobal>
#include "common/define.h"
namespace olive {
inline QString ToHex(quint64 t) {
return QStringLiteral("%1").arg(t, 0, 16);
}
}
#endif // TOHEX_H