blob: 91f8d431f44e87479412e4f2c88a83dc358da436 [file] [log] [blame]
Brian Silverman890a32a2018-03-11 15:41:56 -07001#include "ctre/phoenix/ErrorCode.h" // ErrorCode
2#include <string>
3
4namespace ctre {
5namespace phoenix {
6
7class CTRLogger {
8public:
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}