Generator/Generate_Index [ Functions ]

NAME

Generate_Index -- generate index file based on xref files.

SYNOPSIS

static void Generate_Index(
    struct RB_Document *document )

FUNCTION

Create a master index file. It contains pointers to the documentation generated for each source file, as well as all "objects" found in the source files.

SOURCE

{
    switch ( output_mode )
    {
    case TEST:
        break;
    case XMLDOCBOOK:
        break;
    case HTML:
        RB_HTML_Generate_Index( document );
        break;
    case LATEX:
        /* Latex has a index by default */
        break;
    case UNKNOWN:
    case ASCII:
    case TROFF:
    case RTF:
    default:
        break;
    }
}