#include <iostream>#include "List.h"#include "String.h"#include "Vector2D.h"#include "Shape.h"#include "Robot.h"#include "Structs.h"#include "ArenaReplay.h"Include dependency graph for List.cc:

Go to the source code of this file.
Functions | |
| void | Error (const bool fatal, const String &error_msg, const String &function_name) |
|
||||||||||||||||
|
Definition at line 72 of file Various.cc. 00073 {
00074 cerr << "RealTimeBattle: " << _("Error in") << " "
00075 << function_name << ": " << error_msg << endl;
00076 // perror("RealTimeBattle: errno message");
00077
00078 if( fatal == true )
00079 {
00080 Quit(false);
00081 }
00082 }
|
1.3.9.1