| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] | 
You must supply a value for the main-text attribute.
You may also supply a value for option-code.  If you do, then
the optionProcess invocation will not be emitted into the code.
AutoOpts will wrap the text inside of:
| int
main( int argc, char** argv )
{
    {
        int ct = optionProcess( &<<prog-name>>Options, argc, argv );
        argc -= ct;
        argv += ct;
    }
<<your text goes here>>
}
 | 
so you can most conveniently set the value with a "here string"
(see section 2.2.7 A Here String):
| code = <<- _EndOfMainProc_ <<your text goes here>> _EndOfMainProc_; |