Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members  

exception.h File Reference

#include <iostream>

Include dependency graph for exception.h:

Include dependency graph

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

Included by dependency graph

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.


Define Documentation

#define _EXCEPTION_H_
 


Function Documentation

std::ostream& operator<< std::ostream &    output,
Exception   err
 

Writes an exception to an ostream.

Note:
a wrapper on Exception::write so normal syntax can be used

00056 {
00057    err.write(output);
00058    return output;
00059 }


Generated on Mon Apr 7 19:42:30 2003 for DuTree by doxygen1.2.18