Numworks Epsilon  1.4.1
Graphing Calculator Operating System
i18n.h
Go to the documentation of this file.
1 #ifndef ESCHER_I18N_H
2 #define ESCHER_I18N_H
3 
4 #include <stdint.h>
5 
6 namespace I18n {
7  enum class Message : uint16_t;
8  enum class Language : uint16_t;
9  const char * translate(Message m, Language l = (Language)0);
10  int numberOfLanguages();
11 }
12 
13 #endif
14 
Definition: i18n.h:6
unsigned short uint16_t
Definition: stdint.h:5
enum Message uint16_t enum Language uint16_t const char * translate(Message m, Language l=(Language) 0)
Definition: i18n.cpp:5
int numberOfLanguages()
Definition: i18n.cpp:9