/** * @author Edouard DUPIN * * @copyright 2010, Edouard DUPIN, all right reserved * * @license GPL v3 (see license file) */ #ifndef __HIGHLIGHT_MANAGER_H__ #define __HIGHLIGHT_MANAGER_H__ #include #include #include #include namespace HighlightManager{ void Init(void); void UnInit(void); void loadLanguages(void); Highlight* Get(etk::FSNode &fileName); bool Exist(etk::FSNode &fileName); }; #endif