Changeset 349 in Sophya for trunk/SophyaPI/PIext/piacmd.h
- Timestamp:
- Aug 4, 1999, 3:37:31 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/piacmd.h
r333 r349 45 45 class Timer; 46 46 class PDynLinkMgr; 47 class PIAHelpWind; 47 48 class PIAHelpWind; // Fenetre d'aide en ligne 49 class PIACmdBloc; 48 50 49 51 // --------------------------------------------------------------------- … … 53 55 // --------------------------------------------------------------------- 54 56 55 class PIAHelpWind; // Fenetre d'aide en ligne56 57 57 58 class PIACmd : public CmdInterpreter { … … 74 75 virtual int ExecuteCommandLine(string& line); 75 76 virtual int ExecuteCommand(string& keyw, vector<string>& args); 76 virtual int ExecFile(string& file );77 virtual int ExecFile(string& file, vector<string>& args); 77 78 78 79 virtual string& GetUsage(const string& kw); … … 114 115 // Pour stocker les variables definies par l'interpreteur 115 116 typedef map<string, string, less<string> > CmdVarList; 116 CmdVarList mVars; // Liste des variables 117 CmdVarList mVars; // Liste des variables 118 CmdVarList mAliases; // Liste des alias 119 120 PIACmdBloc * curblk; // Bloc de commande courant (foreach, ...) 121 int felevel; // foreah level 122 117 123 ofstream hist; // History file 124 bool histon; // True -> history file 118 125 bool trace; // Trace flag 119 126 bool timing; // Display CPU Time
Note:
See TracChangeset
for help on using the changeset viewer.