X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=dynamic%2Flauncher%2Fgx%2F00001%2FProcedure.hpp;h=e89dc3d84010fd427f72287f0b09d61b8fc1afdd;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hp=b46ef740599396bb242574a28f1a2210386651f4;hpb=d723d5bf571eb48c641b092058eaa38bb6c4fcc8;p=anna.git diff --git a/dynamic/launcher/gx/00001/Procedure.hpp b/dynamic/launcher/gx/00001/Procedure.hpp index b46ef74..e89dc3d 100644 --- a/dynamic/launcher/gx/00001/Procedure.hpp +++ b/dynamic/launcher/gx/00001/Procedure.hpp @@ -11,23 +11,17 @@ // Project #include +#include -namespace anna { - namespace diameter { - namespace comm { - class OriginHost; - } - } -} - class Procedure { anna::comm::Application *a_app; public: Procedure(anna::comm::Application *app) : a_app(app) {;} - virtual void execute(const std::string &args, std::string &response, anna::diameter::comm::OriginHost *originHost) 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