2020-01-18 05:38:21 -03:00
|
|
|
/*
|
2020-04-19 14:57:05 -03:00
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
2020-01-18 05:38:21 -03:00
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 05:38:21 -03:00
|
|
|
*/
|
|
|
|
|
|
2019-08-03 03:32:07 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
2020-04-19 14:57:05 -03:00
|
|
|
#include <AK/Forward.h>
|
2019-08-03 03:32:07 -03:00
|
|
|
|
2020-04-19 14:57:05 -03:00
|
|
|
namespace Core {
|
|
|
|
|
|
|
|
|
|
class StandardPaths {
|
|
|
|
|
public:
|
|
|
|
|
static String home_directory();
|
|
|
|
|
static String desktop_directory();
|
2020-05-05 18:56:57 -03:00
|
|
|
static String downloads_directory();
|
2020-04-19 14:57:05 -03:00
|
|
|
static String tempfile_directory();
|
2020-08-05 12:18:59 -03:00
|
|
|
static String config_directory();
|
2020-04-19 14:57:05 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|