mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
20 lines
233 B
C++
20 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;
|
||
|
|
}
|