From ab2aa4d4922ab1a62b7a43013d09b2d9d144b3c5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 15 Aug 2008 23:34:41 +0000 Subject: Push serialiser down into core ('world'). HTTP access to patches (serialised on demand). git-svn-id: http://svn.drobilla.net/lad/ingen@1393 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/client/NodeModel.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/libs/client/NodeModel.cpp') diff --git a/src/libs/client/NodeModel.cpp b/src/libs/client/NodeModel.cpp index 4e81d6dd..96d70663 100644 --- a/src/libs/client/NodeModel.cpp +++ b/src/libs/client/NodeModel.cpp @@ -27,8 +27,8 @@ namespace Ingen { namespace Client { -NodeModel::NodeModel(Store& store, SharedPtr plugin, const Path& path, bool polyphonic) - : ObjectModel(store, path, polyphonic) +NodeModel::NodeModel(SharedPtr plugin, const Path& path, bool polyphonic) + : ObjectModel(path, polyphonic) , _plugin_uri(plugin->uri()) , _plugin(plugin) , _min_values(0) @@ -36,8 +36,8 @@ NodeModel::NodeModel(Store& store, SharedPtr plugin, const Path& pa { } -NodeModel::NodeModel(Store& store, const string& plugin_uri, const Path& path, bool polyphonic) - : ObjectModel(store, path, polyphonic) +NodeModel::NodeModel(const string& plugin_uri, const Path& path, bool polyphonic) + : ObjectModel(path, polyphonic) , _plugin_uri(plugin_uri) , _min_values(0) , _max_values(0) -- cgit v1.2.1