X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=dynamic%2Flauncher%2Fdefault%2FProcedure.hpp;h=4d85411af83961f27711d2953a3072c4bbd38785;hb=8a597c7ccbe2986f505fd70258e4b59ecef4166f;hp=91247a37db875e067db0540fa42d7d0d974ee99b;hpb=127e9289b0f410f51a364ac887b6ab7ec58ec6d7;p=anna.git diff --git a/dynamic/launcher/default/Procedure.hpp b/dynamic/launcher/default/Procedure.hpp index 91247a3..4d85411 100644 --- a/dynamic/launcher/default/Procedure.hpp +++ b/dynamic/launcher/default/Procedure.hpp @@ -11,7 +11,7 @@ // Project #include - +#include class Procedure { @@ -20,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(); + virtual void execute(const std::string &args, std::string &response) throw(anna::RuntimeException); + virtual void execute(const nlohmann::json &args, std::string &response) throw(anna::RuntimeException); }; #endif