Generator/RB_Generate_Documentation [ Functions ]

FUNCTION

Generate the documentation for all the information contained in a RB_Document structure.

SYNOPSIS

void RB_Generate_Documentation(
    struct RB_Document *document )

INPUTS

document -- pointer to the RB_Document structure.

SOURCE

{
    RB_SetCurrentFile( NULL );



    if ( document->actions.do_singledoc )
    {
        RB_Generate_SingleDoc( document );
    }
    else if ( document->actions.do_multidoc )
    {
        RB_Generate_MultiDoc( document );
    }
    else if ( document->actions.do_singlefile )
    {
        RB_Generate_SingleDoc( document );
    }
}