Main Page   Packages   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Search  

C:/temp/src/j2k/Fred/Error/JErrorHandler.inl

Go to the documentation of this file.
00001 #ifndef __J2K__JErrorHandler_INL__
00002 #define __J2K__JErrorHandler_INL__
00003 
00004   inline JErrorHandler::JErrorHandler( const JErrorHandler &  h )
00005    : next( NULL ), elem( h.elem ) { }
00006 
00007   inline JErrorHandler::JErrorHandler()
00008    : id( 0 ), next( NULL ) { elem = defaultErrorHandler; }
00009 
00010   inline JErrorHandler::JErrorHandler( JErrorHandlerCallback_t  newHandler )
00011    : id( 1 ), next( NULL ) { elem = newHandler; }
00012 
00013   inline JErrorHandler::JErrorHandler( JErrorHandlerCallback_t  newHandler, JErrorHandler* Next )
00014    : id( 1 ), next( Next ), elem( newHandler ) { }
00015 
00016 
00017   inline JErrorHandler::JErrorHandler( JErrorHandlerCallback_t  newHandler, JErrorHandler* Next, short i )
00018    : id( i ), next( Next ), elem( newHandler ) { }
00019 
00020 #endif

Generated on Sun Oct 14 18:46:31 2001 for Standard J2K Library by doxygen1.2.11.1 written by Dimitri van Heesch, © 1997-2001