/* * Authors : Kerem Yollu & Edwin Koch * Date : 07.03.2021 * * Description : * TODO : Write description or doxygene * */ #include "errorHandling.h" #include ErrorHandler errorHandle; int initPlatform() { // Dev. Module initialisation "Ex i2c_init() ...." return 0; } int main(int argc, char *argv[]) { errorHandle.addNewError(-34,"Test eroor 1"); // errorHandle.handleError(-34); errorHandle.addNewError(-34,"Test eroor"); // Init std::cout << "Main" << std::endl; return 1; }