#ifndef XDG_HH #define XDG_HH #include #include #include namespace xdg { enum class Type { CONFIG, DATA, CACHE, }; void paths_to_read(Type type, std::string_view path, std::vector& out); std::filesystem::path path_to_write(Type type, std::string_view path); } // namespace xdg #endif // XDG_HH