]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkInterpreter.h
no message
[bbtk.git] / kernel / src / bbtkInterpreter.h
index 043706409546e792bda5093a332b9e860ab1c9aa..e94da2abe8498cea8da71afca01e129af8f8dfd1 100644 (file)
@@ -2,8 +2,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkInterpreter.h,v $
   Language:  C++
-  Date:      $Date: 2010/09/12 23:15:15 $
-  Version:   $Revision: 1.40 $
+  Date:      $Date: 2010/09/14 07:18:47 $
+  Version:   $Revision: 1.41 $
 =========================================================================*/
 
 /* ---------------------------------------------------------------------
@@ -327,6 +327,27 @@ namespace bbtk
 
     void Debug(const std::string& arg);
 
+         void commandNew(std::string boxType, std::string boxName);
+         void commandDelete(std::string boxName);
+         void commandConnection(std::string nodeFrom, std::string outputLabel, std::string nodeTo, std::string inputLabel);
+         void commandPackage(std::string packageName);
+         void commandEndPackage();
+         void commandDefine(std::string name, std::string pack, std::string scriptfilename);
+         void commandEndDefine();
+         void commandKind(std::string kind);
+         void commandPrint(std::string value);
+         void commandExec(std::string word);
+         void commandInput(std::string name, std::string box, std::string input,std::string  help);
+         void commandOutput(std::string name, std::string box, std::string output,std::string  help);
+         void commandSet(std::string box, std::string input, std::string value);
+         void commandAuthor(std::string author);
+         void commandCategory(std::string categorytype);
+         void commandDescription(std::string description);
+         void commandClear();
+         void commandInclude(std::string word, bool ok);
+         void commandLoad(std::string packageName);
+         void commandUnload(std::string packageName);
+         
          /// Constructor
          Interpreter(const std::string& cpp_file = "");