blob: 5dbd5d0f0ceaac3eec7b9477aa00207688b9a2d2 (
plain)
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 = spdlog::create<spdlog::sinks::null_sink_st>("null"));
} // wanda
#endif
|