diff options
author | David Robillard <d@drobilla.net> | 2006-09-08 03:58:00 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-09-08 03:58:00 +0000 |
commit | 48f87f1f1649fb7e169fdaac2cd38370e8a4a1fa (patch) | |
tree | 9da4b4b075791ac1ec78b499dbcbec6101f54690 /src/libs/engine/GraphObject.h | |
parent | acbe9a26ec3ab689e430225d15e95e73a7378aa9 (diff) | |
download | ingen-48f87f1f1649fb7e169fdaac2cd38370e8a4a1fa.tar.gz ingen-48f87f1f1649fb7e169fdaac2cd38370e8a4a1fa.tar.bz2 ingen-48f87f1f1649fb7e169fdaac2cd38370e8a4a1fa.zip |
De-singleton-ified Engine
Slight rework of Responder/ClientKey/ClientInterface for Requests
git-svn-id: http://svn.drobilla.net/lad/ingen@119 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/GraphObject.h')
-rw-r--r-- | src/libs/engine/GraphObject.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libs/engine/GraphObject.h b/src/libs/engine/GraphObject.h index 1c4fae49..3b0c27b1 100644 --- a/src/libs/engine/GraphObject.h +++ b/src/libs/engine/GraphObject.h @@ -31,6 +31,7 @@ namespace Ingen { class Patch; class Node; class Port; +class ObjectStore; /** An object on the audio graph - Patch, Node, Port, etc. @@ -57,7 +58,7 @@ public: inline GraphObject* parent() const { return _parent; } inline const string& name() const { return _name; } - virtual void process(SampleCount nframes) = 0; + virtual void process(SampleCount nframes, FrameTime start, FrameTime end) = 0; /** Rename */ virtual void set_path(const Path& new_path) { @@ -79,7 +80,7 @@ public: /** Patch and Node override this to recursively add their children. */ - virtual void add_to_store() = 0; + virtual void add_to_store(ObjectStore* store) = 0; /** Patch and Node override this to recursively remove their children. */ virtual void remove_from_store() = 0; |