X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;ds=sidebyside;f=dynamic%2Flauncher%2Fdefault%2FProcedure.hpp;h=9ed0622802b842147b561e553930430aab86771b;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hp=b8096bcb7e79863840762083ce0dd5a8b03b2a09;hpb=a4a2ff4e20ddc4c6de7f2d3efd3acfb16c0d91c1;p=anna.git diff --git a/dynamic/launcher/default/Procedure.hpp b/dynamic/launcher/default/Procedure.hpp index b8096bc..9ed0622 100644 --- a/dynamic/launcher/default/Procedure.hpp +++ b/dynamic/launcher/default/Procedure.hpp @@ -11,6 +11,7 @@ // Project #include +#include class Procedure { @@ -19,7 +20,8 @@ class Procedure { public: Procedure(anna::comm::Application *app) : a_app(app) {;} - virtual void execute(const std::string &args, std::string &response) throw(anna::RuntimeException); + virtual void execute(const std::string &args, std::string &response) noexcept(false); + virtual void execute(const nlohmann::json &args, std::string &response) noexcept(false); }; #endif