Ejemplo n.º 1
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;
            }
        }
Ejemplo n.º 2
0
        public static delegateGetCFH GetCFH;            // SET this to override and add on more functions

        public ConditionFunctions(ConditionVariables v, ConditionFileHandles f)
        {
            vars    = v;
            handles = f;

            if (GetCFH == null)                     // Make sure we at least have some functions.. the base ones
            {
                GetCFH = DefaultGetCFH;
            }
        }