summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/GraphObjectImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/GraphObjectImpl.cpp')
-rw-r--r--src/libs/engine/GraphObjectImpl.cpp27
1 files changed, 24 insertions, 3 deletions
diff --git a/src/libs/engine/GraphObjectImpl.cpp b/src/libs/engine/GraphObjectImpl.cpp
index d0820f61..62474bfc 100644
--- a/src/libs/engine/GraphObjectImpl.cpp
+++ b/src/libs/engine/GraphObjectImpl.cpp
@@ -16,16 +16,37 @@
*/
#include "GraphObjectImpl.hpp"
-#include "Patch.hpp"
+#include "PatchImpl.hpp"
#include "ObjectStore.hpp"
namespace Ingen {
-Patch*
+PatchImpl*
GraphObjectImpl::parent_patch() const
{
- return dynamic_cast<Patch*>((NodeImpl*)_parent);
+ return dynamic_cast<PatchImpl*>((NodeImpl*)_parent);
+}
+
+
+GraphObjectImpl::const_iterator
+GraphObjectImpl::children_begin() const
+{
+ throw;
+}
+
+
+GraphObjectImpl::const_iterator
+GraphObjectImpl::children_end() const
+{
+ throw;
+}
+
+
+SharedPtr<GraphObject>
+GraphObjectImpl::find_child(const string& name) const
+{
+ throw;
}