brDeleteSummarizer
Deletes a Brevity summarizer object. This will free all of the memory and data used by Brevity. If you wish to use Brevity again you must call brCreateSummarizer before calling any Brevity functions.
Synopsis
void brDeleteSummarizer( SumManagerT Summarizer, StatusCodeT *Status )
Arguments
Summarizer The Brevity summarizer object returned by brCreateSummarizer. Status A pointer to a value of type StatusCodeT. If an error occurs during the execution of the function a value representing the error will be stored in *Status. You should check *Status after every function call.
Returns
Nothing.
Related Functions
Example
StatusCodeT Status;
SumManagerT Brevity;
Brevity = ixCreateSummarizer( 0x0011FFFFL, 0x0011FFFFL, &Status );
if ( *Status < 0 ) {
printerror( Status );
return; // error
}
//
// code to summarize text goes here
//
ixDeleteSummarizer( Brevity, &Status );
if ( *Status < 0 ) {
printerror( Status );
return; // error
}