Exemple #1
0
 public ConditionFunctionHandlers(ConditionFunctions c, ConditionVariables v, ConditionPersistentData h, int recd)
 {
     caller         = c;
     vars           = v;
     persistentdata = h;
     recdepth       = recd;
     paras          = new List <Parameter>();
 }
Exemple #2
0
        public static delegateGetCFH GetCFH;            // SET this to override and add on more functions

        public ConditionFunctions(ConditionVariables v, ConditionPersistentData f)
        {
            vars           = v;
            persistentdata = f;

            if (GetCFH == null)                     // Make sure we at least have some functions.. the base ones
            {
                GetCFH = DefaultGetCFH;
            }
        }
Exemple #3
0
 // backstop standard functions
 static public ConditionFunctionHandlers DefaultGetCFH(ConditionFunctions c, ConditionVariables vars, ConditionPersistentData handles, int recdepth)
 {
     return(new ConditionFunctionsBase(c, vars, handles, recdepth));
 }