Loopp/src/observer/time.hxx

26 lines
397 B
C++
Raw Normal View History

2013-07-31 18:19:15 +02:00
#ifndef LUPPP_TIME_OBSERVER_H
#define LUPPP_TIME_OBSERVER_H
#include "../config.hxx"
2013-07-31 11:55:48 +02:00
class TimeObserver
{
public:
/// registers with TimeManager
TimeObserver();
virtual ~TimeObserver(){};
virtual void setFpb(int fpb){};
virtual void bar(){};
virtual void beat(){};
virtual void tapTempo(bool b){};
};
2013-07-31 18:19:15 +02:00
#endif // LUPPP_TIME_OBSERVER_H