koto/desktop/config/library.hpp
2024-09-29 17:39:43 +03:00

17 lines
361 B
C++

#pragma once
#include "includes/toml.hpp"
#include <filesystem>
#include <string>
namespace fs = std::filesystem;
class KotoLibraryConfig {
public:
KotoLibraryConfig(const toml::value &v);
~KotoLibraryConfig();
std::string getName();
fs::path getPath();
private:
std::string i_name;
fs::path i_path;
};