Multiple directories
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
namespace dropshell {
|
||||
|
||||
@ -13,11 +14,11 @@ class config {
|
||||
|
||||
bool is_config_set() const;
|
||||
|
||||
bool get_local_config_directory(std::string& path) const;
|
||||
void init_local_config_directory(const std::string& path);
|
||||
const std::vector<std::string> & get_local_config_directories() const;
|
||||
bool add_local_config_directory(const std::string& path);
|
||||
|
||||
private:
|
||||
std::string mLocalConfigPath;
|
||||
std::vector<std::string> mLocalConfigPaths;
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user