Loopp/src/observer/time.hxx

16 lines
228 B
C++
Raw Normal View History

2013-07-31 18:19:15 +02:00
#ifndef LUPPP_TIME_OBSERVER_H
#define LUPPP_TIME_OBSERVER_H
2013-07-31 11:55:48 +02:00
class TimeObserver
{
public:
virtual void setFpb(int fpb){};
virtual void bar(){};
virtual void beat(){};
};
2013-07-31 18:19:15 +02:00
#endif // LUPPP_TIME_OBSERVER_H