Paul Davis
c4ac437490
* use explicit operator<< and operator>> that in turn use PBD::EnumWriter when serializing and deserializing to/from rc files * adds scrolling in mixer window (from 2.X) * BBT math stuff - untested, but basically operational * move LocaleGuard into its own file(s) in libs/pbd * Tempo now uses nframes64_t everywhere (except for sample rate values) * as in 2.X, use mkstemp and hack to avoid temp file nonsense, and remove erroneous free() from disk stats output git-svn-id: svn://localhost/ardour2/branches/3.0@5961 d708f5d6-7413-0410-9779-e7cbd77b26cf
23 lines
352 B
C++
23 lines
352 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 = strdup (setlocale (LC_NUMERIC, NULL));
|
|
if (strcmp (old, str)) {
|
|
setlocale (LC_NUMERIC, str);
|
|
}
|
|
}
|
|
|
|
LocaleGuard::~LocaleGuard ()
|
|
{
|
|
setlocale (LC_NUMERIC, old);
|
|
free ((char*)old);
|
|
}
|
|
|