diff options
Diffstat (limited to 'src/wallpaper.hpp')
| -rw-r--r-- | src/wallpaper.hpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/wallpaper.hpp b/src/wallpaper.hpp index 6222557..5dbd5d0 100644 --- a/src/wallpaper.hpp +++ b/src/wallpaper.hpp @@ -1,12 +1,16 @@ #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); + +void set_wallpaper(std::filesystem::path wallpaper, std::shared_ptr<spdlog::logger> logger = spdlog::create<spdlog::sinks::null_sink_st>("null")); } // wanda |
