#include <iostream>
Include dependency graph for exception.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Compounds | |
class | Exception |
An exception class that can be written to stdout. More... | |
Defines | |
#define | _EXCEPTION_H_ |
Functions | |
std::ostream & | operator<< (std::ostream &output, Exception &err) |
Writes an exception to an ostream. |
|
|
|
Writes an exception to an ostream.
00056 { 00057 err.write(output); 00058 return output; 00059 } |