X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=dynamic%2Flauncher%2Fgx%2F00001%2FProcedure.cpp;fp=dynamic%2Flauncher%2Fgx%2F00001%2FProcedure.cpp;h=62975c114c49d08e3bee2454fac1c0cf47bbdaab;hp=0000000000000000000000000000000000000000;hb=8b3eb3637cbe90fbabe70ec5667cce58cb7e368b;hpb=5e6cbe34594884c65483235a5d782fe5717cdce6 diff --git a/dynamic/launcher/gx/00001/Procedure.cpp b/dynamic/launcher/gx/00001/Procedure.cpp new file mode 100644 index 0000000..62975c1 --- /dev/null +++ b/dynamic/launcher/gx/00001/Procedure.cpp @@ -0,0 +1,23 @@ +// ANNA - Anna is Not Nothingness Anymore // +// // +// (c) Copyright 2005-2015 Eduardo Ramos Testillano & Francisco Ruiz Rayo // +// // +// See project site at http://redmine.teslayout.com/projects/anna-suite // +// See accompanying file LICENSE or copy at http://www.teslayout.com/projects/public/anna.LICENSE // + +// Standard +#include +#include + + +// Local +#include "Procedure.hpp" + +void Procedure::execute(const std::string &args, std::string &response) throw() { + response = "00001 Empty default implementation. Make dynamic library and reimplement this method."; + if (args != "" ) { + response += " Provided argument(s) ignored: "; + response += args; + } +} +