mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-09-13 13:47:02 -04:00
12 lines
222 B
C++
12 lines
222 B
C++
#ifndef STRING_UTILS_H
|
|
#define STRING_UTILS_H
|
|
|
|
class StringUtils
|
|
{
|
|
public:
|
|
static const char* wchar_to_char(const wchar_t* pwchar);
|
|
static std::string make_filename(std::string input);
|
|
};
|
|
|
|
#endif // STRING_UTILS_H
|