2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2015-02-06 21:23:07 +03:00
|
|
|
#ifndef cmLocale_h
|
|
|
|
#define cmLocale_h
|
|
|
|
|
2016-09-01 21:05:48 +03:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
|
2016-04-29 16:40:20 +03:00
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
|
2015-02-06 21:23:07 +03:00
|
|
|
#include <locale.h>
|
|
|
|
|
|
|
|
class cmLocaleRAII
|
|
|
|
{
|
|
|
|
const char* OldLocale;
|
2016-05-16 17:34:04 +03:00
|
|
|
|
2015-02-06 21:23:07 +03:00
|
|
|
public:
|
2016-05-16 17:34:04 +03:00
|
|
|
cmLocaleRAII()
|
2016-06-27 23:44:16 +03:00
|
|
|
: OldLocale(setlocale(LC_CTYPE, CM_NULLPTR))
|
2016-05-16 17:34:04 +03:00
|
|
|
{
|
2015-02-06 21:23:07 +03:00
|
|
|
setlocale(LC_CTYPE, "");
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
~cmLocaleRAII() { setlocale(LC_CTYPE, this->OldLocale); }
|
2015-02-06 21:23:07 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|