Class FPParams
See Also: Class FPValue
class FPParams
Description:
This class is available in release 4.0 and later only.
This parameters class contains a Tab<> of FPValue's, being the actual parameters for an FP Function call.
Data Members:
public:
Tab<FPValue> params;
The table of FPValue’s contained in this class.
Methods:
public:
Prototype:
FPParams();
Remarks:
Constructor.
Default Implementation:
{ }
Prototype:
FPParams(int count, ...);
Remarks:
Constructor.
Parameters:
int count
The number of parameter values to add.
...
This method takes a variable number of arguments representing the parameter values that will be stored in the params table.
Prototype:
~FPParams();
Remarks:
Destructor.
Prototype:
void Load(int count, ...);
Remarks:
This method loads a number of parameter values.
Parameters:
int count
The number of parameter values to add.
...
This method takes a variable number of arguments representing the parameter values that will be stored in the params table.