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