Changeset 895 in Sophya for trunk/SophyaLib/SysTools/periodic.h
- Timestamp:
- Apr 12, 2000, 7:49:54 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SysTools/periodic.h
r480 r895 7 7 #include <list> 8 8 9 namespace SOPHYA { 10 9 11 class Periodic; 10 12 typedef list<Periodic*> PeriodicList; … … 12 14 typedef void (* UsPeriodicAction) (void *); 13 15 16 //! Class for the execution of a periodic action 14 17 class Periodic 15 18 { … … 23 26 virtual void SetIntervalms(int dtms); 24 27 28 /*! Returns the time interval in seconds >= 1 sec */ 25 29 inline int Interval() { return(mDt); } 30 /*! Returns the time interval in milli-second */ 26 31 inline int Intervalms() { return(mDtms); } 27 32 … … 41 46 }; 42 47 48 } // namespace SOPHYA 43 49 44 50 #endif
Note:
See TracChangeset
for help on using the changeset viewer.