lcpex rewrite - alpha

This commit is contained in:
phanes
2023-02-15 18:44:21 -05:00
parent bb85754dc0
commit 7ed6e13fa5
82 changed files with 4510 additions and 2592 deletions

26
src/shells/shells.h Normal file
View File

@@ -0,0 +1,26 @@
#ifndef REX_SHELLS_H
#define REX_SHELLS_H
#include "../json_support/JSON.h"
#include <string>
class Shell: public JSON_Loader {
public:
Shell( int LOG_LEVEL );
int load_root( Json::Value loader_root );
std::string name;
std::string path;
std::string execution_arg;
std::string source_cmd;
private:
std::string shell_definitions_path;
int LOG_LEVEL;
Logger slog;
};
#endif //REX_SHELLS_H