summaryrefslogtreecommitdiffstats
path: root/ingen/GraphObject.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-08-14 21:37:20 +0000
committerDavid Robillard <d@drobilla.net>2012-08-14 21:37:20 +0000
commit76b602f1f834cb2c255848c5ba887b3d7c47171a (patch)
treecbe6588c70f2df4384231d9cbdfd06fb0aa7e45f /ingen/GraphObject.hpp
parenta8312be2d849b73ff0acc80a226095bcfee3556c (diff)
downloadingen-76b602f1f834cb2c255848c5ba887b3d7c47171a.tar.gz
ingen-76b602f1f834cb2c255848c5ba887b3d7c47171a.tar.bz2
ingen-76b602f1f834cb2c255848c5ba887b3d7c47171a.zip
Replace use of old Raul Table stuff with std::map.
Move most Store functionality into Ingen::Store and eliminate EngineStore. Much cleaner delete and move implementations. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4696 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen/GraphObject.hpp')
-rw-r--r--ingen/GraphObject.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/ingen/GraphObject.hpp b/ingen/GraphObject.hpp
index 048aaebd..25d6ea75 100644
--- a/ingen/GraphObject.hpp
+++ b/ingen/GraphObject.hpp
@@ -31,6 +31,7 @@ namespace Ingen {
class Edge;
class Plugin;
+class Store;
/** An object on the audio graph - Patch, Node, Port, etc.
*
@@ -80,6 +81,9 @@ public:
}
protected:
+ friend class Store;
+ virtual void set_path(const Raul::Path& p) = 0;
+
GraphObject(URIs& uris, const Raul::Path& path)
: Resource(uris, path_to_uri(path))
{}