mirror of
https://github.com/Kiritow/MiniEngine.git
synced 2024-03-22 13:11:22 +08:00
19 lines
287 B
C++
19 lines
287 B
C++
|
#include "ErrorViewer.h"
|
||
|
#include "include.h"
|
||
|
#include "begin_code.h"
|
||
|
void ErrorViewer::fetch()
|
||
|
{
|
||
|
str = SDL_GetError();
|
||
|
}
|
||
|
|
||
|
std::string ErrorViewer::getError() const
|
||
|
{
|
||
|
return str;
|
||
|
}
|
||
|
|
||
|
const char * ErrorViewer::what() const throw()
|
||
|
{
|
||
|
return str.c_str();
|
||
|
}
|
||
|
#include "end_code.h"
|