/* * Copyright (c) 2023-2024, Liav A. * Copyright (c) 2023, kleines Filmröllchen * * SPDX-License-Identifier: BSD-2-Clause */ #include "InstalledPort.h" Optional InstalledPort::type_from_string(StringView type) { if (type == "auto"sv) return Type::Auto; if (type == "manual"sv) return Type::Manual; return {}; }