#include <iostream>Include dependency graph for List.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Data Structures | |
| struct | ListNode< T > |
| struct | ListIterator< T > |
| class | List< T > |
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