/********************************************************************\ * gnc-locale-utils.hpp -- provide a default locale for C++ * * Copyright (C) 2019 John Ralls /** Get the default application locale. * * If we set std::locale::global we have to imbue every stream that * we want in the C locale, and that's a lot more than we want imbued * with the application locale. Calling std::locale("") is expensive, * so call this instead. * * @returns A static std::locale representing the one set with * setlocale() in main(). */ const std::locale& gnc_get_locale(); #endif /* GNC_LOCALE_UTILS_HPP */