Brian Silverman | 890a32a | 2018-03-11 15:41:56 -0700 | [diff] [blame^] | 1 | #include "ctre/phoenix/ErrorCode.h" // ErrorCode |
2 | #include <string> | ||||
3 | |||||
4 | namespace ctre { | ||||
5 | namespace phoenix { | ||||
6 | |||||
7 | class CTRLogger { | ||||
8 | public: | ||||
9 | static void Close(); | ||||
10 | static ErrorCode Log(ErrorCode code, std::string origin); | ||||
11 | static void Open(int language); | ||||
12 | //static void Description(ErrorCode code, const char *&shrt, const char *&lng); | ||||
13 | }; | ||||
14 | |||||
15 | } | ||||
16 | } |