blob: 91f8d431f44e87479412e4f2c88a83dc358da436 [file] [log] [blame]
#include "ctre/phoenix/ErrorCode.h" // ErrorCode
#include <string>
namespace ctre {
namespace phoenix {
class CTRLogger {
public:
static void Close();
static ErrorCode Log(ErrorCode code, std::string origin);
static void Open(int language);
//static void Description(ErrorCode code, const char *&shrt, const char *&lng);
};
}
}