From 4c32f20699db0ede850a9485271dfda779761fac Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 5 Jan 2010 03:07:18 +0000 Subject: Remove unused Buffer.cpp (Buffer::create). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2339 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/Buffer.cpp | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 src/engine/Buffer.cpp (limited to 'src/engine') diff --git a/src/engine/Buffer.cpp b/src/engine/Buffer.cpp deleted file mode 100644 index 15752846..00000000 --- a/src/engine/Buffer.cpp +++ /dev/null @@ -1,46 +0,0 @@ -/* This file is part of Ingen. - * Copyright (C) 2007-2009 Dave Robillard - * - * Ingen is free software; you can redistribute it and/or modify it under the - * terms of the GNU General Public License as published by the Free Software - * Foundation; either version 2 of the License, or (at your option) any later - * version. - * - * Ingen is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU General Public License for details. - * - * You should have received a copy of the GNU General Public License along - * with this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#include -#include "AudioBuffer.hpp" -#include "EventBuffer.hpp" -#include "ObjectBuffer.hpp" - -namespace Ingen { - -using namespace Shared; - -class Engine; - -Buffer* -Buffer::create(Engine& engine, Shared::PortType type, size_t size) -{ - if (type.is_control()) - return new AudioBuffer(type, size); - else if (type.is_audio()) - return new AudioBuffer(type, size); - else if (type.is_events()) - return new EventBuffer(size); - else if (type.is_value() || type.is_message()) - return new ObjectBuffer(std::max(size, - sizeof(LV2_Object) + sizeof(void*))); - else - throw; -} - - -} // namespace Ingen -- cgit v1.2.1