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 ISIS 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.
Definition at line 38 of file JP2Error.h.
void Isis::JP2Error::add_text | ( | const std::string & | message | ) |
Write Kakadu error messages using ISIS 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 41 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 ISIS preferred method.
Definition at line 52 of file JP2Error.cpp.
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 ISIS 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 31 of file JP2Error.cpp.