summaryrefslogtreecommitdiffstats
path: root/src/engine/EngineStore.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/EngineStore.cpp')
-rw-r--r--src/engine/EngineStore.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/engine/EngineStore.cpp b/src/engine/EngineStore.cpp
index ff8786a3..9905bd55 100644
--- a/src/engine/EngineStore.cpp
+++ b/src/engine/EngineStore.cpp
@@ -34,7 +34,6 @@ using namespace Raul;
namespace Ingen {
-
/** Find the Patch at the given path.
*/
PatchImpl*
@@ -44,7 +43,6 @@ EngineStore::find_patch(const Path& path)
return dynamic_cast<PatchImpl*>(object);
}
-
/** Find the Node at the given path.
*/
NodeImpl*
@@ -54,7 +52,6 @@ EngineStore::find_node(const Path& path)
return dynamic_cast<NodeImpl*>(object);
}
-
/** Find the Port at the given path.
*/
PortImpl*
@@ -64,7 +61,6 @@ EngineStore::find_port(const Path& path)
return dynamic_cast<PortImpl*>(object);
}
-
/** Find the Object at the given path.
*/
GraphObjectImpl*
@@ -74,7 +70,6 @@ EngineStore::find_object(const Path& path)
return ((i == end()) ? NULL : dynamic_cast<GraphObjectImpl*>(i->second.get()));
}
-
/** Add an object to the store. Not realtime safe.
*/
void
@@ -84,7 +79,6 @@ EngineStore::add(Shared::GraphObject* obj)
Store::add(obj);
}
-
/** Add a family of objects to the store. Not realtime safe.
*/
void
@@ -94,7 +88,6 @@ EngineStore::add(const Objects& table)
cram(table);
}
-
/** Remove an object from the store.
*
* Returned is a vector containing all descendants of the object removed
@@ -106,7 +99,6 @@ EngineStore::remove(const Path& path)
return remove(find(path));
}
-
/** Remove an object from the store.
*
* Returned is a vector containing all descendants of the object removed
@@ -129,7 +121,6 @@ EngineStore::remove(iterator object)
}
}
-
/** Remove all children of an object from the store.
*
* Returned is a vector containing all descendants of the object removed
@@ -141,7 +132,6 @@ EngineStore::remove_children(const Path& path)
return remove_children(find(path));
}
-
/** Remove all children of an object from the store.
*
* Returned is a vector containing all descendants of the object removed
@@ -165,5 +155,4 @@ EngineStore::remove_children(iterator object)
return SharedPtr<EngineStore::Objects>();
}
-
} // namespace Ingen