aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/machina/Edge.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/Edge.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/Edge.hpp')
-rw-r--r--src/engine/machina/Edge.hpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/engine/machina/Edge.hpp b/src/engine/machina/Edge.hpp
index 9c45f67..71c113d 100644
--- a/src/engine/machina/Edge.hpp
+++ b/src/engine/machina/Edge.hpp
@@ -20,18 +20,20 @@
#include <list>
#include <boost/utility.hpp>
-#include "raul/WeakPtr.hpp"
-#include "raul/SharedPtr.hpp"
+
#include "raul/DoubleBuffer.hpp"
-#include "raul/Stateful.hpp"
-#include "types.hpp"
+#include "raul/SharedPtr.hpp"
+#include "raul/WeakPtr.hpp"
+
#include "Action.hpp"
+#include "Stateful.hpp"
+#include "types.hpp"
namespace Machina {
class Node;
-class Edge : public Raul::Stateful {
+class Edge : public Stateful {
public:
Edge(WeakPtr<Node> tail, SharedPtr<Node> head)