kima2/src/core/utils.h

14 lines
234 B
C++

#ifndef UTILS_H
#define UTILS_H
#include <string>
#include <locale>
std::string formatCentAsEuroString(const int cent, int width = 10);
#ifdef __WIN32
std::string convertFromUtf16ToUtf8(std::u16string& utf16String);
#endif
#endif