summaryrefslogtreecommitdiffstats
path: root/src/libs/client/ModelClientInterface.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2006-09-09 14:24:56 +0000
committerDavid Robillard <d@drobilla.net>2006-09-09 14:24:56 +0000
commitfca95e5d454d37bd74b98f5bce35cfcbaee86c3f (patch)
tree97fcf6e8afaf4356d46a24236e9aa2451ab55698 /src/libs/client/ModelClientInterface.cpp
parentb853b3dde1f7028dd275f78433a6ad9b5b9f61c7 (diff)
downloadingen-fca95e5d454d37bd74b98f5bce35cfcbaee86c3f.tar.gz
ingen-fca95e5d454d37bd74b98f5bce35cfcbaee86c3f.tar.bz2
ingen-fca95e5d454d37bd74b98f5bce35cfcbaee86c3f.zip
Drove 'er home! Working monolothic Ingenuity (ie. in-process engine).
Countless bugfixes. git-svn-id: http://svn.drobilla.net/lad/ingen@123 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/client/ModelClientInterface.cpp')
-rw-r--r--src/libs/client/ModelClientInterface.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/libs/client/ModelClientInterface.cpp b/src/libs/client/ModelClientInterface.cpp
index f2fcd10e..440f2a73 100644
--- a/src/libs/client/ModelClientInterface.cpp
+++ b/src/libs/client/ModelClientInterface.cpp
@@ -63,9 +63,9 @@ ModelClientInterface::connection_model(ConnectionModel* cm)
void
-ModelClientInterface::new_plugin(const string& type,
- const string& uri,
- const string& name)
+ModelClientInterface::new_plugin(string type,
+ string uri,
+ string name)
{
PluginModel* plugin = new PluginModel(type, uri);
plugin->name(name);
@@ -75,7 +75,7 @@ ModelClientInterface::new_plugin(const string& type,
void
-ModelClientInterface::new_patch(const string& path, uint32_t poly)
+ModelClientInterface::new_patch(string path, uint32_t poly)
{
PatchModel* pm = new PatchModel(path, poly);
//PluginModel* pi = new PluginModel(PluginModel::Patch);
@@ -86,9 +86,9 @@ ModelClientInterface::new_patch(const string& path, uint32_t poly)
void
-ModelClientInterface::new_node(const string& plugin_type,
- const string& plugin_uri,
- const string& node_path,
+ModelClientInterface::new_node(string plugin_type,
+ string plugin_uri,
+ string node_path,
bool is_polyphonic,
uint32_t num_ports)
{
@@ -104,8 +104,8 @@ ModelClientInterface::new_node(const string& plugin_type,
void
-ModelClientInterface::new_port(const string& path,
- const string& type,
+ModelClientInterface::new_port(string path,
+ string type,
bool is_output)
{
PortModel::Type ptype = PortModel::CONTROL;
@@ -123,8 +123,8 @@ ModelClientInterface::new_port(const string& path,
void
-ModelClientInterface::connection(const string& src_port_path,
- const string& dst_port_path)
+ModelClientInterface::connection(string src_port_path,
+ string dst_port_path)
{
connection_model(new ConnectionModel(src_port_path, dst_port_path));
}