68 FGCondition(
const std::string& test, std::shared_ptr<FGPropertyManager> PropertyManager,
71 bool Evaluate(
void)
const;
72 void PrintCondition(std::string indent=
" ")
const;
76 enum eComparison {ecUndef=0, eEQ, eNE, eGT, eGE, eLT, eLE};
77 enum eLogic {elUndef=0, eAND, eOR};
80 FGPropertyValue_ptr TestParam1;
81 FGParameter_ptr TestParam2;
82 eComparison Comparison;
83 std::string conditional;
84 std::vector<std::shared_ptr<FGCondition>> conditions;