aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/Action.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-01-15 21:53:48 +0000
committerDavid Robillard <d@drobilla.net>2013-01-15 21:53:48 +0000
commit69c8cde985cc012b6cae2a49d489553c5be67202 (patch)
tree08411dfc9fcf48660c7467d9140f3c35b16464ee /src/engine/Action.hpp
parent987eaa018039cb891ffeca60b413a00b1f7da299 (diff)
downloadmachina-69c8cde985cc012b6cae2a49d489553c5be67202.tar.gz
machina-69c8cde985cc012b6cae2a49d489553c5be67202.tar.bz2
machina-69c8cde985cc012b6cae2a49d489553c5be67202.zip
Compile against latest Eugene (evolution still doesn't work, though).
git-svn-id: http://svn.drobilla.net/lad/trunk/machina@4994 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/Action.hpp')
-rw-r--r--src/engine/Action.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/engine/Action.hpp b/src/engine/Action.hpp
index 79b7fca..90f8664 100644
--- a/src/engine/Action.hpp
+++ b/src/engine/Action.hpp
@@ -34,7 +34,10 @@ namespace machina {
*/
struct Action
: public Raul::Maid::Manageable
- , public Stateful {
+ , public Stateful
+{
+ bool operator==(const Action& rhs) const { return false; }
+
virtual void execute(MIDISink* sink, Raul::TimeStamp time) = 0;
virtual void write_state(Sord::Model& model) {}