X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=dynamic%2Flauncher%2Fgx%2F00001%2FProcedure.hpp;h=7c833f93fb635d817c3171c1e971f8e7b6c186b5;hb=8a597c7ccbe2986f505fd70258e4b59ecef4166f;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..7c833f9 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) throw(anna::RuntimeException); + virtual void execute(const nlohmann::json &args, std::string &response) throw(anna::RuntimeException); }; #endif