| 37 | class ExecuteScript : public core::Processor { |
| 38 | public: |
| 39 | explicit ExecuteScript(const std::string &name, utils::Identifier uuid = utils::Identifier()) |
| 40 | : Processor(name, uuid), |
| 41 | logger_(logging::LoggerFactory<ExecuteScript>::getLogger()), |
| 42 | script_engine_q_() { |
| 43 | } |
| 44 | |
| 45 | static core::Property ScriptEngine; |
| 46 | static core::Property ScriptFile; |