| 609 | |
| 610 | |
| 611 | class AlgorithmDeviceScan(Algorithm): |
| 612 | algorithm_name = "device_scan" |
| 613 | cpp_configuration_template_name = "scan_config_template" |
| 614 | config_selection_params = [ |
| 615 | SelectionType(name="value_type", is_optional=False, select_on_size_only=False) |
| 616 | ] |
| 617 | |
| 618 | def __init__(self, fallback_entries): |
| 619 | Algorithm.__init__(self, fallback_entries) |
| 620 | |
| 621 | |
| 622 | # TODO: select_on_size_only may need to get re-evaluated, as it is likely that swapping the value |
no test coverage detected