#ifndef MONITOR_MY_BEATS
#define MONITOR_MY_BEATS

#include "common.h"
#include "users.h"
#include <wx/thread.h>
#include "MutexLocker.h"

class BeatMonitor : public wxThread
{
public:
	BeatMonitor(int delay = 30000);
	wxThread::ExitCode Entry();
private:
	int m_delay;
};

#endif

