GocatorDecisionCode

Description

Represents the possible measurement decision codes.

Values of this enumeration:

  • OK - The measurement value is valid and it falls outside the defined passing decision range.
  • InvalidAnchor - The tool associated with the measurement is anchored is has received invalid measurement data from its anchoring source(s).
  • InvalidValue - The measurement value is invalid.

namespace GocatorDecisionCode
{
	enum Type
	{
		OK,
		InvalidAnchor,
		InvalidValue
	};
}