11 lines
199 B
C++
11 lines
199 B
C++
|
#include "file-utils.h"
|
||
|
|
||
|
FileUtils::FileUtils()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
std::string FileUtils::makeDocUterm(QString *path)
|
||
|
{
|
||
|
return QCryptographicHash::hash(path->toUtf8(),QCryptographicHash::Md5).toStdString();
|
||
|
}
|