summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-01-05 03:07:18 +0000
committerDavid Robillard <d@drobilla.net>2010-01-05 03:07:18 +0000
commit4c32f20699db0ede850a9485271dfda779761fac (patch)
treeb263dd64462bf1ae8e97b6c65b2465101cfaf9a2 /src
parent807d929d544fd96ffeb5d1e3642e08cee9d9d1bc (diff)
downloadingen-4c32f20699db0ede850a9485271dfda779761fac.tar.gz
ingen-4c32f20699db0ede850a9485271dfda779761fac.tar.bz2
ingen-4c32f20699db0ede850a9485271dfda779761fac.zip
Remove unused Buffer.cpp (Buffer::create).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2339 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/engine/Buffer.cpp46
1 files changed, 0 insertions, 46 deletions
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 <http://drobilla.net>
- *
- * 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 <algorithm>
-#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