i18n
Loading...
Searching...
No Matches
ILocale.hpp
Go to the documentation of this file.
1
8#pragma once
9
10#include <string>
11
34class ILocale {
35public:
36
44 virtual const std::string languageCode() const = 0;
45
49 virtual ~ILocale() = default;
50};
Base interface for all locale implementations.
Definition ILocale.hpp:34
virtual ~ILocale()=default
Virtual destructor for proper cleanup of derived classes.
virtual const std::string languageCode() const =0
Retrieve the two-letter language code of the locale.