Changeset 2804 in Sophya
- Timestamp:
- Jun 9, 2005, 5:52:03 PM (20 years ago)
- Location:
- trunk/SophyaLib/SysTools
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SysTools/cexpre.cc
r2615 r2804 37 37 38 38 //--------------------------------------------------------- 39 /*! 40 \internal 41 \ingroup SysTools 42 \brief Class representing numbers for expression evaluation 43 \sa CExpressionEvaluator 44 */ 39 45 class CE_NumberExp : public CExprBase { 40 46 public: -
trunk/SophyaLib/SysTools/commander.h
r2753 r2804 23 23 24 24 namespace SOPHYA { 25 // Classe definissant l'interface pour un executeur de commande 26 27 // Classe definissant l'interface pour un interpreteur de commande 25 26 ////// Classe definissant l'interface pour un interpreteur de commande 28 27 29 28 /*! … … 40 39 }; 41 40 41 42 /////// Classe definissant l'interface pour un executeur de commande 42 43 43 44 /*! … … 181 182 182 183 // Pour enregistrer la liste de commandes et leurs executeurs et le help 183 //! Command executor registration - For Commander internal use 184 /*! \cond Pour supprimer la documentation par doxygen */ 185 // Command executor registration - For Commander internal use 184 186 struct cmdex {int group; string us; CmdExecutor * cex; } ; 185 // !Help text registration - For Commander internal use187 // Help text registration - For Commander internal use 186 188 struct hgrpst {int gid; string desc; } ; // Identification+description d'un groupe de help 189 /*! \endcond */ 190 187 191 typedef map<string, hgrpst, less<string> > CmdHGroup; // Liste des groupes de commandes 188 192 CmdHGroup cmdhgrp; … … 191 195 CmdExmap cmdexmap; // Liste des commandes et leurs executeurs 192 196 CmdExmap helpexmap; // Pour les helps sans commande 193 194 197 // Pour garder la liste des threads d'execution de commande 195 198 list<CommandExeThr *> CmdThrExeList; -
trunk/SophyaLib/SysTools/psighand.cc
r2615 r2804 18 18 Configures signal handling. When the flag is true, an exception 19 19 \b CaughtSignalExc is thrown with the excpetion id set to the 20 signal id. Withthe flag is false, the default signal handling20 signal id. If the flag is false, the default signal handling 21 21 is restored. 22 22 \param cfpe : Floating point exception \c SIGFPE -
trunk/SophyaLib/SysTools/rpneval.cc
r2615 r2804 15 15 Arithmetic expression (double precision float) evaluator 16 16 in Reverse Polish Notation (RPN). This is an HP calculator 17 like syntax. Space are used for separating the string17 like syntax. Spaces are used for separating the string 18 18 expression into tokens. \n 19 19 The string parsed by RPNExpressionEvaluator should be … … 23 23 The stack is limited only 24 24 by the available memory. The three numbers on the stack top 25 are referred to as <tt> x y x</tt>. \n25 are referred to as <tt> x y z </tt>. \n 26 26 Available operations: 27 27 - op= + - * / % : replace (x,y) by x.op.y
Note:
See TracChangeset
for help on using the changeset viewer.