aurora/include/kabufuda/WideStringConvert.hpp
Phillip Stephens 1c1f1d9adc Finalize directory structure
Remove unrelated classes from Card.{cpp,hpp}
2025-04-19 19:53:15 -07:00

13 lines
261 B
C++

#ifndef __KABU_WIDESTRINGCONVERT_HPP__
#define __KABU_WIDESTRINGCONVERT_HPP__
#include <string>
namespace kabufuda
{
std::string WideToUTF8(const std::wstring& src);
std::wstring UTF8ToWide(const std::string& src);
}
#endif // __KABU_WIDESTRINGCONVERT_HPP__