reactive_graph_std_logical_model/component/
logical_operation.rs1use crate::NAMESPACE_LOGICAL;
2use reactive_graph_graph::component_ty;
3use reactive_graph_graph::properties;
4use reactive_graph_reactive_model_api::entity_model;
5use reactive_graph_std_result_model::ResultBoolean;
6
7properties!(LogicalOperationProperties, (LHS, "lhs", false));
8
9component_ty!(COMPONENT_LOGICAL_OPERATION, NAMESPACE_LOGICAL, COMPONENT_NAME_LOGICAL_OPERATION, "logical_operation");
10
11entity_model!(
12 LogicalOperation,
13 set lhs bool
14);
15impl ResultBoolean for LogicalOperation {}