aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/machina/Action.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-12-18 20:39:56 +0000
committerDavid Robillard <d@drobilla.net>2010-12-18 20:39:56 +0000
commitbc008a26847814d0daad2d36cab54dc7d2e72184 (patch)
tree464c647c0c772d7b376b48b41bbde871ca742873 /src/engine/machina/Action.hpp
parentcd3fab990cbbdb9c71f8563d3f8e113d4359f463 (diff)
downloadmachina-bc008a26847814d0daad2d36cab54dc7d2e72184.tar.gz
machina-bc008a26847814d0daad2d36cab54dc7d2e72184.tar.bz2
machina-bc008a26847814d0daad2d36cab54dc7d2e72184.zip
Remove Raul::Stateful (which never really belonged in Raul anyway).
git-svn-id: http://svn.drobilla.net/lad/trunk/machina@2766 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/machina/Action.hpp')
-rw-r--r--src/engine/machina/Action.hpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/engine/machina/Action.hpp b/src/engine/machina/Action.hpp
index d9d9d7b..4c251ee 100644
--- a/src/engine/machina/Action.hpp
+++ b/src/engine/machina/Action.hpp
@@ -20,10 +20,12 @@
#include <string>
#include <iostream>
+
#include "raul/MIDISink.hpp"
-#include "raul/TimeSlice.hpp"
-#include "raul/Stateful.hpp"
#include "raul/SharedPtr.hpp"
+#include "raul/TimeSlice.hpp"
+
+#include "Stateful.hpp"
#include "types.hpp"
namespace Machina {
@@ -31,7 +33,7 @@ namespace Machina {
/** An Action, executed on entering or exiting of a state.
*/
-struct Action : public Raul::Deletable, public Raul::Stateful {
+struct Action : public Raul::Deletable, public Stateful {
virtual void execute(SharedPtr<Raul::MIDISink> sink, Raul::TimeStamp time) = 0;
virtual void write_state(Redland::Model& model);