Changeset 2943 in Sophya for trunk/SophyaLib/SysTools/commander.h
- Timestamp:
- Apr 26, 2006, 5:22:09 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SysTools/commander.h
r2804 r2943 55 55 //! command execution method for a command defined by keyword and its arguments. 56 56 virtual int Execute(string& keyw, vector<string>& args, string& toks)=0; 57 //! Return true if the command \b keyw is thread compatible 57 //! Return true if the command \b keyw is thread compatible (can be executed in a separate thread) 58 58 virtual bool IsThreadable(string const & keyw) { return false; } 59 59 }; … … 105 105 virtual void HelptoLaTeX(string const & flnm); 106 106 107 //! return the current selected interpreter (default : this) 107 108 inline CmdInterpreter* CurrentInterpreter() { return(curcmdi); } 108 109 … … 170 171 // Gestion des threads d'execution de commandes 171 172 void ListThreads(); 172 void CancelThr(uint_8 thrid);173 void StopThr(uint_8 thrid); 173 174 void CleanThrList(); 174 175 void WaitThreads();
Note:
See TracChangeset
for help on using the changeset viewer.