2 #ifndef MARDICTIONARY_H
3 #define MARDICTIONARY_H
11 marDictFrase(int id,char*frase);
23 // Define a new application type, each program should derive a class from wxApp
28 void ResetDictionary();
29 void SetLanguage(int language);
30 char* GetString(int id);
32 bool LoadDictionaryFile(char *dictionaryFileName);
33 void LoadDictionary_English();
34 void LoadDictionary_French();
35 void LoadDictionary_Japanese();
37 void FreeDictionary();
43 static std::vector<marDictFrase*> *_frases;
45 bool ExistFileDictionary(char *dictionaryFileName);
46 void SetString(int id,char *ss);
50 #endif // MARDICTIONARY_H