1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef WANDA_WALLPAPER_HPP #define WANDA_WALLPAPER_HPP #include <spdlog/spdlog.h> #include <spdlog/sinks/null_sink.h> #include <filesystem> #include <memory> namespace wanda { void set_wallpaper(std::filesystem::path wallpaper, std::shared_ptr<spdlog::logger> logger); } // wanda #endif