fix compose mess, and a number of 64 bit printf specs
[ardour.git] / libs / ardour / automation.cc
1 #include <stdint.h>
2
3 template<class AutomatedObject>
4 struct AutomationEvent {
5     uint32_t frame;
6     AutomatedObject *object;
7     void (AutomatedObject::*function) (void *);
8     void *arg;
9
10     void operator() (){ 
11             object->function (arg);
12     }
13 };