m2.mbcp/src/clock_test.h

21 lines
333 B
C
Raw Normal View History

2006-02-05 17:43:00 +00:00
#ifndef _GYR_CLOCK_TEST
#define _GYR_CLOCK_TEST
#include "clock.h"
class ClockTest : public Clock {
private:
int _ticks;
//std::vector<int> _ticks;
Glib::Mutex _mutex;
int _myidx;
protected:
public:
ClockTest(); //int truc, int truc);
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