kima2/src/core/utils.h

14 lines
234 B
C
Raw Normal View History

#ifndef UTILS_H
#define UTILS_H
#include <string>
2018-08-09 08:31:38 +02:00
#include <locale>
2018-08-08 15:55:35 +02:00
std::string formatCentAsEuroString(const int cent, int width = 10);
2018-08-08 15:55:35 +02:00
#ifdef __WIN32
2018-08-09 08:31:38 +02:00
std::string convertFromUtf16ToUtf8(std::u16string& utf16String);
2018-08-08 15:55:35 +02:00
#endif
2018-08-09 08:31:38 +02:00
#endif