lcpex rewrite - alpha
This commit is contained in:
26
src/shells/shells.h
Normal file
26
src/shells/shells.h
Normal 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
|
||||
Reference in New Issue
Block a user