diff options
author | David Robillard <d@drobilla.net> | 2006-06-20 21:56:12 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-06-20 21:56:12 +0000 |
commit | 032d526710d174b30e0c9f33ff9f7e60e99fb172 (patch) | |
tree | 21eefe5891ccf7f3bb7bd618c125afd928fc81c5 /src/libs/engine/instantiations.cpp | |
parent | 34d46336eeccb2430df4d1ef00097890c400ab05 (diff) | |
download | ingen-032d526710d174b30e0c9f33ff9f7e60e99fb172.tar.gz ingen-032d526710d174b30e0c9f33ff9f7e60e99fb172.tar.bz2 ingen-032d526710d174b30e0c9f33ff9f7e60e99fb172.zip |
Renamed OmObject GraphObject;
Merged Port::prepare_buffers and Node::run into GraphObject::process.
git-svn-id: http://svn.drobilla.net/lad/grauph@69 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/instantiations.cpp')
-rw-r--r-- | src/libs/engine/instantiations.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/libs/engine/instantiations.cpp b/src/libs/engine/instantiations.cpp index e2b0088d..34718406 100644 --- a/src/libs/engine/instantiations.cpp +++ b/src/libs/engine/instantiations.cpp @@ -24,7 +24,7 @@ #include "Tree.h" #include "TreeImplementation.h" -#include "OmObject.h" +#include "GraphObject.h" #include "Node.h" @@ -32,18 +32,18 @@ template class Tree<Om::Node*>; template class TreeNode<Om::Node*>; -template Tree<Om::OmObject*>::Tree(); -template Tree<Om::OmObject*>::~Tree(); -template void Tree<Om::OmObject*>::insert(TreeNode<Om::OmObject*>* const n); -template TreeNode<Om::OmObject*>* Tree<Om::OmObject*>::remove(const string& key); -template Om::OmObject* Tree<Om::OmObject*>::find(const string& key) const; -template TreeNode<Om::OmObject*>* Tree<Om::OmObject*>::find_treenode(const string& key) const; +template Tree<Om::GraphObject*>::Tree(); +template Tree<Om::GraphObject*>::~Tree(); +template void Tree<Om::GraphObject*>::insert(TreeNode<Om::GraphObject*>* const n); +template TreeNode<Om::GraphObject*>* Tree<Om::GraphObject*>::remove(const string& key); +template Om::GraphObject* Tree<Om::GraphObject*>::find(const string& key) const; +template TreeNode<Om::GraphObject*>* Tree<Om::GraphObject*>::find_treenode(const string& key) const; -template Tree<Om::OmObject*>::iterator Tree<Om::OmObject*>::begin() const; -template Tree<Om::OmObject*>::iterator Tree<Om::OmObject*>::end() const; +template Tree<Om::GraphObject*>::iterator Tree<Om::GraphObject*>::begin() const; +template Tree<Om::GraphObject*>::iterator Tree<Om::GraphObject*>::end() const; -template Tree<Om::OmObject*>::iterator::~iterator(); -template Om::OmObject* Tree<Om::OmObject*>::iterator::operator*() const; -template Tree<Om::OmObject*>::iterator& Tree<Om::OmObject*>::iterator::operator++(); -template bool Tree<Om::OmObject*>::iterator::operator!=(const iterator& iter) const; +template Tree<Om::GraphObject*>::iterator::~iterator(); +template Om::GraphObject* Tree<Om::GraphObject*>::iterator::operator*() const; +template Tree<Om::GraphObject*>::iterator& Tree<Om::GraphObject*>::iterator::operator++(); +template bool Tree<Om::GraphObject*>::iterator::operator!=(const iterator& iter) const; |