#ifndef ERRORHANDLER_H #define ERRORHANDLER_H #include #include enum class ErrorType{ DEFAULT = -1, SDL_ERROR }; class ErrorHandler { private: public: static bool send(ErrorType e, std::string message); }; #endif /* ERRORHANDLER_H */