diff options
author | David Robillard <d@drobilla.net> | 2007-07-26 19:16:52 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-07-26 19:16:52 +0000 |
commit | bee242f29045b82e50a4f112ac17f7e14344df78 (patch) | |
tree | e3c43801ab004b4b15581c63fff61dea33bcc104 /src/libs/engine/GraphObject.hpp | |
parent | 90cb0280fdb356bc1474be31a15f8c6f24ed95ee (diff) | |
download | ingen-bee242f29045b82e50a4f112ac17f7e14344df78.tar.gz ingen-bee242f29045b82e50a4f112ac17f7e14344df78.tar.bz2 ingen-bee242f29045b82e50a4f112ac17f7e14344df78.zip |
Use PathTable for engine side objects.
Re-implement renaming and destroying more cleanly (not to mention workingly).
git-svn-id: http://svn.drobilla.net/lad/ingen@638 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/GraphObject.hpp')
-rw-r--r-- | src/libs/engine/GraphObject.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/engine/GraphObject.hpp b/src/libs/engine/GraphObject.hpp index d5ffb4b8..ad49bcc5 100644 --- a/src/libs/engine/GraphObject.hpp +++ b/src/libs/engine/GraphObject.hpp @@ -85,13 +85,13 @@ public: const MetadataMap& metadata() const { return _metadata; } - +#if 0 /** Patch and Node override this to recursively add their children. */ virtual void add_to_store(ObjectStore* store); /** Patch and Node override this to recursively remove their children. */ virtual void remove_from_store(); - +#endif /** The Patch this object is a child of. */ virtual Patch* parent_patch() const; |