mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 08:00:20 +00:00
41691a7fcb
... and additionally port it to Core::Stream. :^)
27 lines
512 B
C++
27 lines
512 B
C++
/*
|
|
* Copyright (c) 2021, Dex♪ <dexes.ttp@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/DeprecatedString.h>
|
|
#include <AK/Forward.h>
|
|
#include <LibGUI/Forward.h>
|
|
#include <sys/types.h>
|
|
|
|
namespace GUI {
|
|
|
|
class CommonLocationsProvider {
|
|
public:
|
|
struct CommonLocation {
|
|
DeprecatedString name;
|
|
DeprecatedString path;
|
|
};
|
|
|
|
static ErrorOr<void> load_from_json(StringView json_path);
|
|
static Vector<CommonLocation> const& common_locations();
|
|
};
|
|
|
|
}
|