mirror of https://gitlab.com/cppit/jucipp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
459 B
20 lines
459 B
|
11 years ago
|
#ifndef JUCI_CONFIG_H_
|
||
|
11 years ago
|
#define JUCI_CONFIG_H_
|
||
|
11 years ago
|
#include <boost/property_tree/json_parser.hpp>
|
||
|
|
#include <boost/property_tree/xml_parser.hpp>
|
||
|
11 years ago
|
|
||
|
11 years ago
|
class MainConfig {
|
||
|
|
public:
|
||
|
|
MainConfig();
|
||
|
11 years ago
|
void find_or_create_config_files();
|
||
|
11 years ago
|
void PrintMenu();
|
||
|
|
void GenerateSource();
|
||
|
|
void GenerateKeybindings();
|
||
|
11 years ago
|
void GenerateDirectoryFilter();
|
||
|
11 years ago
|
void GenerateTerminalCommands();
|
||
|
11 years ago
|
private:
|
||
|
11 years ago
|
boost::property_tree::ptree cfg;
|
||
|
|
boost::property_tree::ptree key_tree;
|
||
|
11 years ago
|
};
|
||
|
11 years ago
|
#endif
|