summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/GraphObject.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-02-09 22:39:56 +0000
committerDavid Robillard <d@drobilla.net>2007-02-09 22:39:56 +0000
commite343345cf54172720f3494ccef87d62b2c688d0a (patch)
tree67c6b3f95e9393110f78b6fa0cf44cbd12f935a4 /src/libs/engine/GraphObject.h
parentc50fe49fea7e32b3194b163b77ee5a52480ffa33 (diff)
downloadingen-e343345cf54172720f3494ccef87d62b2c688d0a.tar.gz
ingen-e343345cf54172720f3494ccef87d62b2c688d0a.tar.bz2
ingen-e343345cf54172720f3494ccef87d62b2c688d0a.zip
Moved Deletable (formerly MaidObject), List, and Array from Ingen to Raul.
git-svn-id: http://svn.drobilla.net/lad/ingen@294 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/GraphObject.h')
-rw-r--r--src/libs/engine/GraphObject.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/engine/GraphObject.h b/src/libs/engine/GraphObject.h
index aaf20e25..8754c28a 100644
--- a/src/libs/engine/GraphObject.h
+++ b/src/libs/engine/GraphObject.h
@@ -22,7 +22,7 @@
#include <map>
#include <cstddef>
#include <cassert>
-#include "MaidObject.h"
+#include <raul/Deletable.h>
#include "raul/Path.h"
#include "raul/Atom.h"
#include "types.h"
@@ -41,13 +41,13 @@ class ObjectStore;
/** An object on the audio graph - Patch, Node, Port, etc.
*
- * Each of these is a MaidObject and so can be deleted in a realtime safe
+ * Each of these is a Raul::Deletable and so can be deleted in a realtime safe
* way from anywhere, and they all have a map of metadata for clients to store
* arbitrary values in (which the engine puts no significance to whatsoever).
*
* \ingroup engine
*/
-class GraphObject : public MaidObject
+class GraphObject : public Raul::Deletable
{
public:
typedef std::map<string, Atom> MetadataMap;