Changeset 2804 in Sophya for trunk/SophyaLib/SysTools


Ignore:
Timestamp:
Jun 9, 2005, 5:52:03 PM (20 years ago)
Author:
ansari
Message:

MAJ commentaires documentation pour doxygen - Reza 9 Juin 2005

Location:
trunk/SophyaLib/SysTools
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/SysTools/cexpre.cc

    r2615 r2804  
    3737
    3838//---------------------------------------------------------
     39/*!
     40  \internal
     41  \ingroup SysTools
     42  \brief Class representing numbers for expression evaluation
     43  \sa CExpressionEvaluator
     44*/
    3945class CE_NumberExp : public CExprBase {
    4046public:
  • trunk/SophyaLib/SysTools/commander.h

    r2753 r2804  
    2323
    2424namespace 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
    2827
    2928/*!
     
    4039};
    4140
     41
     42/////// Classe definissant l'interface pour un executeur de commande
    4243
    4344/*!
     
    181182
    182183// 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
    184186  struct cmdex {int group; string us; CmdExecutor * cex; } ;
    185 //! Help text registration - For Commander internal use
     187//  Help text registration - For Commander internal use
    186188  struct hgrpst {int gid; string desc; } ;               // Identification+description d'un groupe de help
     189  /*! \endcond */
     190
    187191  typedef map<string, hgrpst, less<string> > CmdHGroup;   // Liste des groupes de commandes
    188192  CmdHGroup cmdhgrp;
     
    191195  CmdExmap cmdexmap;                                   // Liste des commandes et leurs executeurs
    192196  CmdExmap helpexmap;                                  // Pour les helps sans commande
    193 
    194197// Pour garder la liste des threads d'execution de commande
    195198  list<CommandExeThr *> CmdThrExeList;
  • trunk/SophyaLib/SysTools/psighand.cc

    r2615 r2804  
    1818   Configures signal handling. When the flag is true, an exception
    1919   \b CaughtSignalExc is thrown with the excpetion id set to the
    20    signal id. With the flag is false, the default signal handling
     20   signal id. If the flag is false, the default signal handling
    2121   is restored.
    2222   \param cfpe : Floating point exception \c SIGFPE
  • trunk/SophyaLib/SysTools/rpneval.cc

    r2615 r2804  
    1515  Arithmetic expression (double precision float) evaluator
    1616  in Reverse Polish Notation (RPN). This is an HP calculator
    17   like syntax. Space are used for separating the string
     17  like syntax. Spaces are used for separating the string
    1818  expression into tokens. \n
    1919  The string parsed by RPNExpressionEvaluator should be
     
    2323  The stack is limited only
    2424  by the available memory. The three numbers on the stack top
    25   are referred to as <tt> x y x </tt>. \n
     25  are referred to as <tt> x y z </tt>. \n
    2626  Available operations:
    2727  - op= + - * / % : replace (x,y) by x.op.y
Note: See TracChangeset for help on using the changeset viewer.