StandardPaths.h 399 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/Forward.h>
  8. namespace Core {
  9. class StandardPaths {
  10. public:
  11. static String home_directory();
  12. static String desktop_directory();
  13. static String downloads_directory();
  14. static String tempfile_directory();
  15. static String config_directory();
  16. };
  17. }