/* * Copyright (c) 2021, Dex♪ * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include namespace GUI { class CommonLocationsProvider { public: struct CommonLocation { String name; String path; }; static void load_from_json(String const& json_path); static Vector const& common_locations(); }; }