initial commit
This commit is contained in:
commit
fae3d30dbd
26 changed files with 18409 additions and 0 deletions
17
desktop/config/library.hpp
Normal file
17
desktop/config/library.hpp
Normal file
|
@ -0,0 +1,17 @@
|
|||
#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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue