m2.mbcp/src/clock_ab.h

20 lines
247 B
C
Raw Permalink Normal View History

2006-02-05 17:43:00 +00:00
#ifndef _GYR_CLOCK_AB
#define _GYR_CLOCK_AB
#include "clock.h"
class ClockAb : public Clock {
private:
int _ticks;
protected:
public:
ClockAb(size_t index);
virtual TimeStamp inc();
2006-03-06 12:42:03 +00:00
virtual bool adjust(TimeStamp stamp);
2006-02-05 17:43:00 +00:00
};
#endif