aboutsummaryrefslogtreecommitdiffstats
path: root/src
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
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')
-rw-r--r--src/engine/Machine.cpp2
-rw-r--r--src/engine/machina/Action.hpp8
-rw-r--r--src/engine/machina/Edge.hpp12
-rw-r--r--src/engine/machina/Machine.hpp2
-rw-r--r--src/engine/machina/Node.hpp4
5 files changed, 16 insertions, 12 deletions
diff --git a/src/engine/Machine.cpp b/src/engine/Machine.cpp
index c7ea48d..2afedbc 100644
--- a/src/engine/Machine.cpp
+++ b/src/engine/Machine.cpp
@@ -49,7 +49,7 @@ Machine::Machine(TimeUnit unit)
* fresh state (deactivated, rewound)
*/
Machine::Machine(const Machine& copy)
- : Raul::Stateful() // don't copy RDF ID
+ : Stateful() // don't copy RDF ID
, _active_nodes(MAX_ACTIVE_NODES, SharedPtr<Node>())
, _is_activated(false)
, _is_finished(false)
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);
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)
diff --git a/src/engine/machina/Machine.hpp b/src/engine/machina/Machine.hpp
index 8c1caf3..f7a6479 100644
--- a/src/engine/machina/Machine.hpp
+++ b/src/engine/machina/Machine.hpp
@@ -37,7 +37,7 @@ class LearnRequest;
/** A (Finite State) Machine.
*/
-class Machine : public Raul::Stateful {
+class Machine : public Stateful {
public:
Machine(TimeUnit unit);
Machine(const Machine& copy);
diff --git a/src/engine/machina/Node.hpp b/src/engine/machina/Node.hpp
index 730c82b..227e291 100644
--- a/src/engine/machina/Node.hpp
+++ b/src/engine/machina/Node.hpp
@@ -21,10 +21,10 @@
#include "raul/List.hpp"
#include "raul/MIDISink.hpp"
#include "raul/SharedPtr.hpp"
-#include "raul/Stateful.hpp"
#include "Action.hpp"
#include "Schrodinbit.hpp"
+#include "Stateful.hpp"
namespace Machina {
@@ -42,7 +42,7 @@ using Raul::TimeUnit;
* Initial nodes do not have enter actions (since they are entered at
* an undefined point in time <= 0).
*/
-class Node : public Raul::Stateful {
+class Node : public Stateful {
public:
typedef std::string ID;