mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
This is based on code from earlier commits that were later reversed, but we need some mechanism to ensure that threads have a thread local tempo map ptr set. The big difference is that this time we do not implement this for all instances of an AbstractUI - implementation is left to each thread/event loop
19 lines
233 B
C++
19 lines
233 B
C++
#include "pbd/glib_event_source.h"
|
|
|
|
bool
|
|
GlibEventLoopSource::prepare (int& timeout)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool
|
|
GlibEventLoopSource::check ()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool
|
|
GlibEventLoopSource::dispatch (sigc::slot_base*)
|
|
{
|
|
return false;
|
|
}
|