Isis 3 Programmer Reference
|
Kakadu error messaging class. More...
#include <JP2Error.h>
Public Member Functions | |
void | put_text (const char *message) |
<Save text from a Kakadu produced error More... | |
void | add_text (const std::string &message) |
Write Kakadu error messages using ISIS3 methods. More... | |
void | flush (bool end_of_message=false) |
Used to store accumulated Kakadu error messages. More... | |
Public Attributes | |
std::string | Message |
Kakadu error messaging class.
This class is used to register a Kakadu error handler. It is necessary to register the routines put_text, add_text, and flush with the Kakadu error handler in order for the Kakadu error messages to get reported to the user.
2009-12-18 Janet Barrett - Original version.
2017-08-21 Tyler Wilson, Ian Humphrey, Summer Stapleton - Added support for new kakadu libraries. References #4809.
Definition at line 54 of file JP2Error.h.
void Isis::JP2Error::add_text | ( | const std::string & | message | ) |
Write Kakadu error messages using ISIS3 methods.
Register add_text routine with Kakadu error and warning handling facility.
This routine places newline character between successive Kakadu produced error messages.
Definition at line 57 of file JP2Error.cpp.
void Isis::JP2Error::flush | ( | bool | end_of_message = false | ) |
Used to store accumulated Kakadu error messages.
Register flush routine with Kakadu error and warning handling facility.
This routine writes Kakadu error messages out using ISIS3 preferred method.
Definition at line 68 of file JP2Error.cpp.
References _FILEINFO_.
void Isis::JP2Error::put_text | ( | const char * | message | ) |
<Save text from a Kakadu produced error
This class is necessary to catch the error messages produced by Kakadu so that they can be output using ISIS3 methods.
Place newline character between successive Kakadu produced error messages
If these routines are not registered with the Kakadu error handling facility, then the Kakadu errors will be lost and not reported to the user. Register put_text routine with Kakadu error and warning handling facility. This routine saves the text from a Kakadu produced error message.
Definition at line 47 of file JP2Error.cpp.