Changeset 895 in Sophya for trunk/SophyaLib/SysTools/periodic.h


Ignore:
Timestamp:
Apr 12, 2000, 7:49:54 PM (25 years ago)
Author:
ansari
Message:

Documentation de fichiers - Reza 12/4/2000

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/SysTools/periodic.h

    r480 r895  
    77#include <list>
    88
     9namespace SOPHYA {
     10
    911class Periodic;
    1012typedef list<Periodic*> PeriodicList;
     
    1214typedef void (* UsPeriodicAction) (void *);
    1315
     16//! Class for the execution of a periodic action
    1417class Periodic
    1518{
     
    2326  virtual void SetIntervalms(int dtms);
    2427
     28/*! Returns the time interval in seconds >= 1 sec */
    2529  inline int Interval() { return(mDt); }
     30/*! Returns the time interval in milli-second */
    2631  inline int Intervalms() { return(mDtms); }
    2732
     
    4146};
    4247
     48} // namespace SOPHYA
    4349
    4450#endif
Note: See TracChangeset for help on using the changeset viewer.