diff options
Diffstat (limited to 'src/libs/engine/events/CreatePatchEvent.h')
-rw-r--r-- | src/libs/engine/events/CreatePatchEvent.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/libs/engine/events/CreatePatchEvent.h b/src/libs/engine/events/CreatePatchEvent.h index 88eb780b..dd492a33 100644 --- a/src/libs/engine/events/CreatePatchEvent.h +++ b/src/libs/engine/events/CreatePatchEvent.h @@ -18,12 +18,13 @@ #ifndef CREATEPATCHEVENT_H #define CREATEPATCHEVENT_H -#include "raul/Path.h" -#include "QueuedEvent.h" #include <string> +#include <raul/Path.h> +#include "QueuedEvent.h" + using std::string; -template<typename T> class Array; +namespace Raul { template<typename T> class Array; } template<typename T> class TreeNode; namespace Ingen { @@ -52,7 +53,7 @@ private: Path _path; Patch* _patch; Patch* _parent; - Array<Node*>* _process_order; + Raul::Array<Node*>* _process_order; TreeNode<Node*>* _patch_treenode; int _poly; ErrorType _error; |