The FARGO_THORIN code developer's guide
|
The Param structure handles the parameters of the parameter file. More...
#include <types.h>
Data Fields | |
char | name [80] |
Name of the parameter. More... | |
int | type |
Type of the parameter (e.g. More... | |
char * | variable |
A pointer to the corresponding variable. More... | |
int | read |
This variable is set to YES if and only if the parameter has been found in the parameter file. More... | |
int | necessary |
Tell whether defining the parameter is optional or mandatory. More... | |
The Param structure handles the parameters of the parameter file.
It allows to associate the values found in the file to the strings defining the parameters, and ultimately to the global variables associated to these strings. It is used by the function var().
char param::name[80] |
int param::necessary |
int param::read |
This variable is set to YES if and only if the parameter has been found in the parameter file.
Definition at line 78 of file types.h.
Referenced by ReadVariables(), and var().
int param::type |
char* param::variable |