blob: 513916a65c90373180b5aeae0e5fd4a0cfdcc5d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*
SPDX-FileCopyrightText: 2014 Martin Gräßlin <mgraesslin@kde.org>
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/
#ifndef KCONFIG_AUTOTESTS_HELPER_H
#define KCONFIG_AUTOTESTS_HELPER_H
#include <QLocale>
/**
* @brief Helper to store the current default QLocale and resetting to it in the dtor.
**/
class DefaultLocale
{
public:
DefaultLocale()
: m_defaultLocale()
{
}
~DefaultLocale()
{
QLocale::setDefault(m_defaultLocale);
}
private:
QLocale m_defaultLocale;
};
#endif
|