diff options
author | David Robillard <d@drobilla.net> | 2008-02-09 18:23:57 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-02-09 18:23:57 +0000 |
commit | 81f335330c209359ef1d2b3bdedc5c19790d2eba (patch) | |
tree | 2262742e60b1360ecd66bf1f5be57e4df2b53de3 /raul/MIDISink.hpp | |
parent | 43dd122ffcdb6a0b40a56777245a870e411d439c (diff) | |
download | raul-81f335330c209359ef1d2b3bdedc5c19790d2eba.tar.gz raul-81f335330c209359ef1d2b3bdedc5c19790d2eba.tar.bz2 raul-81f335330c209359ef1d2b3bdedc5c19790d2eba.zip |
Use Raul::TimeStamp (LV2 compatible typed 32:32 fixed timestamp) everywhere.
Fix initial size of Patchage messages window.
Machina disabled for now (transitioning to generic timestamps).
git-svn-id: http://svn.drobilla.net/lad/raul@1133 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'raul/MIDISink.hpp')
-rw-r--r-- | raul/MIDISink.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/raul/MIDISink.hpp b/raul/MIDISink.hpp index e30dad2..05c8747 100644 --- a/raul/MIDISink.hpp +++ b/raul/MIDISink.hpp @@ -19,7 +19,7 @@ #define RAUL_MIDI_SINK_HPP #include <stdexcept> -#include <raul/TimeSlice.hpp> +#include <raul/TimeStamp.hpp> #include <raul/Deletable.hpp> namespace Raul { @@ -29,7 +29,7 @@ namespace Raul { */ class MIDISink : public Deletable { public: - virtual void write_event(BeatTime time, + virtual void write_event(TimeStamp time, size_t ev_size, const uint8_t* ev) throw (std::logic_error) = 0; }; |