| 355 | } |
| 356 | |
| 357 | OriginQWhile::OriginQWhile(ClassicalCondition classical_condition, QProg node) |
| 358 | : m_node_type(WHILE_START_NODE), |
| 359 | m_classical_condition(classical_condition) |
| 360 | { |
| 361 | auto node_shared_ptr = node.getImplementationPtr(); |
| 362 | m_true_item = new OriginItem(); |
| 363 | m_true_item->setNode(dynamic_pointer_cast<QNode>(node_shared_ptr)); |
| 364 | } |
| 365 | |
| 366 | NodeType OriginQWhile::getNodeType() const |
| 367 | { |
nothing calls this directly
no test coverage detected