Gaudi Framework, version v21r8

Home   Generated: 17 Mar 2010

StatusCode.h File Reference

#include <ostream>
#include "GaudiKernel/Kernel.h"
#include "GaudiKernel/IssueSeverity.h"
#include "boost/shared_ptr.hpp"

Include dependency graph for StatusCode.h:

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

Go to the source code of this file.

Classes

class  IgnoreError
class  StatusCode
 This class is used for returning status codes from appropriate routines. More...

Functions

std::ostreamoperator<< (std::ostream &s, const StatusCode &sc)


Function Documentation

std::ostream& operator<< ( std::ostream s,
const StatusCode sc 
) [inline]

Definition at line 142 of file StatusCode.h.

00143 {
00144   if ( sc.isSuccess() ) { return s << "SUCCESS" ; }
00145   else if ( sc.isRecoverable() ) { return s << "RECOVERABLE" ; }
00146   s << "FAILURE" ;
00147   if ( StatusCode::FAILURE != sc.getCode() )
00148     { s << "(" << sc.getCode() << ")" ;}
00149   return s ;
00150 }


Generated at Wed Mar 17 18:10:31 2010 for Gaudi Framework, version v21r8 by Doxygen version 1.5.6 written by Dimitri van Heesch, © 1997-2004