mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
17 lines
330 B
C++
17 lines
330 B
C++
#ifndef APPS_GLOBAL_PREFERENCES_H
|
|
#define APPS_GLOBAL_PREFERENCES_H
|
|
|
|
#include "i18n.h"
|
|
|
|
class GlobalPreferences {
|
|
public:
|
|
GlobalPreferences();
|
|
static GlobalPreferences * sharedGlobalPreferences();
|
|
I18n::Language language() const;
|
|
void setLanguage(I18n::Language language);
|
|
private:
|
|
I18n::Language m_language;
|
|
};
|
|
|
|
#endif
|