mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-22 14:46:34 +01:00
13 lines
124 B
C++
13 lines
124 B
C++
|
|
#include <evoral/Sequence.hpp>
|
||
|
|
|
||
|
|
using namespace Evoral;
|
||
|
|
|
||
|
|
int
|
||
|
|
main()
|
||
|
|
{
|
||
|
|
Glib::thread_init();
|
||
|
|
|
||
|
|
Sequence s(100);
|
||
|
|
return 0;
|
||
|
|
}
|