00001 #ifndef _TRANSLATOR_H 00002 #define _TRANSLATOR_H 00003 00004 #include "../../compiler/errors_code.h" 00005 #include <QtCore> 00006 #include <string> 00007 00008 namespace Aseba 00009 { 00010 class CompilerTranslator: public QObject 00011 { 00012 Q_OBJECT 00013 00014 public: 00015 CompilerTranslator(); 00016 00017 static const std::wstring translate(ErrorCode error); 00018 }; 00019 }; 00020 00021 #endif // _TRANSLATOR_H 00022