#include "zinc/fieldlogicaloperators.h"
#include "zinc/field.hpp"
#include "zinc/fieldmodule.hpp"
Go to the source code of this file.
 | 
| class   | OpenCMISS::Zinc::FieldAnd | 
|   | A field whose component values are 1 if that component of source_field_one AND source_field_two is non-zero, 0 otherwise.  More...
  | 
|   | 
| class   | OpenCMISS::Zinc::FieldEqualTo | 
|   | A field whose component values are 1 if that component of source_field_one EQUALS that component of source_field_two, 0 otherwise.  More...
  | 
|   | 
| class   | OpenCMISS::Zinc::FieldGreaterThan | 
|   | A field whose component values are 1 if that component of source_field_one is greater than the component value in source_field_two.  More...
  | 
|   | 
| class   | OpenCMISS::Zinc::FieldLessThan | 
|   | A field whose component values are 1 if that component of source_field_one is less than the component value in source_field_two.  More...
  | 
|   | 
| class   | OpenCMISS::Zinc::FieldOr | 
|   | A field whose component values are 1 if that component of source_field_one OR source_field_two is non-zero, 0 otherwise.  More...
  | 
|   | 
| class   | OpenCMISS::Zinc::FieldNot | 
|   | A field whose component values are 1 if that component of the source_field is zero, 0 otherwise; effectively a component-wise logical not operator.  More...
  | 
|   | 
| class   | OpenCMISS::Zinc::FieldXor | 
|   | A field whose component values are 1 if that component of source_field_one OR source_field_two is non-zero (but not both), 0 otherwise.  More...
  | 
|   | 
 | 
| 
FieldAnd  | OpenCMISS::Zinc::operator&& (const Field &operand1, const Field &operand2) | 
|   | 
| 
FieldGreaterThan  | OpenCMISS::Zinc::operator> (const Field &operand1, const Field &operand2) | 
|   | 
| 
FieldLessThan  | OpenCMISS::Zinc::operator< (const Field &operand1, const Field &operand2) | 
|   | 
| 
FieldOr  | OpenCMISS::Zinc::operator|| (const Field &operand1, const Field &operand2) | 
|   | 
| 
FieldNot  | OpenCMISS::Zinc::operator! (const Field &operand) | 
|   |