kima2/src/core/utils.h

17 lines
331 B
C
Raw Normal View History

#ifndef UTILS_H
#define UTILS_H
#include <string>
2018-08-08 15:55:35 +02:00
#ifdef _WIN32
#include <windows.h>
#endif
std::string formatCentAsEuroString(const int cent, int width = 10);
2018-08-08 15:55:35 +02:00
#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