initial functional file indexer, added Qt / C++ port of Cartographer
This commit is contained in:
parent
fae3d30dbd
commit
c52386abb4
19 changed files with 721 additions and 149 deletions
|
@ -1,17 +1,20 @@
|
|||
#pragma once
|
||||
#include "includes/toml.hpp"
|
||||
#include <filesystem>
|
||||
#include <string>
|
||||
|
||||
#include "includes/toml.hpp"
|
||||
|
||||
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;
|
||||
public:
|
||||
KotoLibraryConfig(std::string name, fs::path path);
|
||||
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