kima2/src/core/utils.h

17 lines
331 B
C++

#ifndef UTILS_H
#define UTILS_H
#include <string>
#ifdef _WIN32
#include <windows.h>
#endif
std::string formatCentAsEuroString(const int cent, int width = 10);
#ifdef __WIN32
const std::string convert_to_utf8(const std::wstring& utf16_string);
const std::wstring convert_to_utf16(const std::string& utf8_string);
#endif
#endif