Changeset 4828 for source/ariba/utility/system/Timer.h
- Timestamp:
- Jul 9, 2009, 11:08:45 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/system/Timer.h
r3690 r4828 65 65 ~Timer(); 66 66 67 /** 68 * Set the interval for the timer 69 * 70 * @param millis Timer interval in milliseconds 71 * @param oneshot Is this a one-shot or periodic timer 72 */ 67 73 void setInterval(unsigned int millis, bool oneshot=false); 74 75 /** 76 * Start the timer 77 */ 68 78 void start(); 79 80 /** 81 * Stop the timer 82 */ 69 83 void stop(); 84 85 /** 86 * Reset a running timer and ignore the remaining interval 87 * time. Start the timer with a new timer interval. 88 */ 89 void reset(); 70 90 71 91 protected:
Note:
See TracChangeset
for help on using the changeset viewer.