Changes between Version 6 and Version 7 of FDORfc22
- Timestamp:
- 06/09/09 08:35:40 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FDORfc22
v6 v7 49 49 In terms of API changes, the following addition to FdoFunctionDefinition class is proposed: 50 50 51 FdoFunctionDefinition.h 51 52 {{{ 52 53 class FdoFunctionDefinition : public FdoIDisposable … … 71 72 FdoFunctionConcat will override SupportsVariableArgumentsList() to return true instead. It will relax the check for allowed number of literal values passed in for evaluation. 72 73 74 FdoFunctionConcat.h 75 {{{ 76 /// Indicates that this object allows its list of arguments to be variable so the 77 /// last argument may be repeated. 78 /// 79 virtual bool SupportsVariableArgumentsList() 80 { 81 return true; 82 } 83 }}} 84 73 85 == Implications == 74 86