logical_or : pass |
This method is called to test if the condition should pass or not.
Any other method of any other object can call this method. This is called 'public' access.
The data-type returned is "booltype"; Returns "true" if the condition passes.
This method is contained in the object "logical_or".
The method takes the following arguments:
filedef : Pointer to tgl_structure_parser
Not sure.
obj : Pointer to @schemaobj
Not sure.
first : booltype
If true, then return true only if the first item is true.
last : booltype
If true, then return true only if the last item is true.
This method is overridden from an abstract method with the same signature found in the object @condition.
The files "tgl_condition.hpp" are included.
Implement a logical or. This means that if any pass, we pass.
for (ph::xmlobj::xmlobj_typed_vector<tgl_condition>::iterator i=_conditions.begin(); i != _conditions.end(); i++) if (i->pass(filedef, obj, first, last)) return !_fail; return _fail;