Changes between Version 6 and Version 7 of FDORfc22


Ignore:
Timestamp:
Jun 9, 2009, 8:35:40 AM (15 years ago)
Author:
danstoica
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FDORfc22

    v6 v7  
    4949In terms of API changes, the following addition to FdoFunctionDefinition class is proposed:
    5050
     51FdoFunctionDefinition.h
    5152{{{
    5253class FdoFunctionDefinition : public FdoIDisposable
     
    7172FdoFunctionConcat will override SupportsVariableArgumentsList() to return true instead. It will relax the check for allowed number of literal values passed in for evaluation.
    7273
     74FdoFunctionConcat.h
     75{{{
     76/// Indicates that this object allows its list of arguments to be variable so the
     77/// last argument may be repeated.
     78///
     79virtual bool SupportsVariableArgumentsList()
     80{
     81    return true;
     82}
     83}}}
     84
    7385== Implications ==
    7486