Paul Davis
14b0ca31bc
git-svn-id: svn://localhost/ardour2/branches/3.0@6807 d708f5d6-7413-0410-9779-e7cbd77b26cf
30 lines
506 B
C++
30 lines
506 B
C++
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <locale.h>
|
|
|
|
#include "pbd/locale_guard.h"
|
|
|
|
using namespace PBD;
|
|
|
|
LocaleGuard::LocaleGuard (const char* str)
|
|
{
|
|
old = setlocale (LC_NUMERIC, NULL);
|
|
|
|
if (old) {
|
|
old = strdup (old);
|
|
if (strcmp (old, str)) {
|
|
setlocale (LC_NUMERIC, str);
|
|
}
|
|
}
|
|
}
|
|
|
|
LocaleGuard::~LocaleGuard ()
|
|
{
|
|
setlocale (LC_NUMERIC, old);
|
|
|
|
if (old) {
|
|
free ((char*)old);
|
|
}
|
|
}
|
|
|