12 lines
242 B
C++
12 lines
242 B
C++
#ifndef LOCALES_H
|
|
#define LOCALES_H
|
|
|
|
#include <map>
|
|
#include <string>
|
|
|
|
using LocaleMap = std::map<const std::string, const std::string>;
|
|
extern std::map<const std::string, LocaleMap*> locales;
|
|
extern void initLocales ();
|
|
|
|
#endif // LOCALES_H
|