From 138a87e915ad3aff184730415105f94c874174bf Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 20 Apr 2011 16:26:40 +0000 Subject: Rename Ingen::Engine to Ingen::Server (hopefully avoid odd name clases and fix #675). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3184 a436a847-0d15-0410-975c-d299462d15a1 --- src/client/ingen_client.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/client/ingen_client.cpp') diff --git a/src/client/ingen_client.cpp b/src/client/ingen_client.cpp index 93b00e59..dc4d7f20 100644 --- a/src/client/ingen_client.cpp +++ b/src/client/ingen_client.cpp @@ -29,23 +29,23 @@ using namespace Ingen; #ifdef HAVE_LIBLO -SharedPtr +SharedPtr new_osc_interface(Ingen::Shared::World* world, const std::string& url) { Client::OSCEngineSender* oes = Client::OSCEngineSender::create( url, world->conf()->option("packet-size").get_int32()); oes->attach(rand(), true); - return SharedPtr(oes); + return SharedPtr(oes); } #endif #ifdef HAVE_SOUP -SharedPtr +SharedPtr new_http_interface(Ingen::Shared::World* world, const std::string& url) { Client::HTTPEngineSender* hes = new Client::HTTPEngineSender(world, url); hes->attach(rand(), true); - return SharedPtr(hes); + return SharedPtr(hes); } #endif -- cgit v1.2.1