parseOptions()
Fill a dynamic array with program arguments.
Syntax
parseOptions()
- Parse and validate command line options
Usage
The GGC needs to call this function to parse and validate the ggcgen tool
command line options before registering the scenario. It fills a dynamic array with
the program arguments. Depending on the options received, it performs the following:
- Initializes the required scenario configuration
- Connects to the BDL scenario server
- Bootstraps the scenario
IMPORT FGL ggc
MAIN
CALL ggc.setApplicationName("")
CALL ggc.parseOptions()
# ...
END MAIN