mirror of
https://github.com/JDM170/model_coder
synced 2025-12-10 05:57:19 +07:00
13 lines
256 B
C++
13 lines
256 B
C++
#ifndef UTIL_H
|
|
#define UTIL_H
|
|
|
|
#include <string>
|
|
#include <mutex>
|
|
#include "md5/md5.h"
|
|
|
|
void mLockedCout(const std::string);
|
|
void keyConversion(const std::string, unsigned int*);
|
|
std::string getFileName(const std::string&, std::string*);
|
|
|
|
#endif // UTIL_H
|