mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-08 22:55:44 +01:00
Factor out sequencing related things into an independant new library: "evoral".
Anything related to the storage of events/values over a range of time lives in evoral. This includes MidiModel (Evoral::Sequence) and automation data (AutomationList (Evoral::ControlList), Automatable (Evoral::ControlSet), etc). libs/evoral synced with http://svn.drobilla.net/lad/trunk/evoral r1511. git-svn-id: svn://localhost/ardour2/branches/3.0@3754 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
3d976c5b72
commit
d357eca668
102 changed files with 4640 additions and 3217 deletions
12
libs/evoral/test/sequence.cpp
Normal file
12
libs/evoral/test/sequence.cpp
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#include <evoral/Sequence.hpp>
|
||||
|
||||
using namespace Evoral;
|
||||
|
||||
int
|
||||
main()
|
||||
{
|
||||
Glib::thread_init();
|
||||
|
||||
Sequence s(100);
|
||||
return 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue