summaryrefslogtreecommitdiffstats
path: root/src/engine/LV2Info.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-20 16:26:40 +0000
committerDavid Robillard <d@drobilla.net>2011-04-20 16:26:40 +0000
commit138a87e915ad3aff184730415105f94c874174bf (patch)
tree0d942bdddfdbcc3d969b4fce5592e770ab851b86 /src/engine/LV2Info.cpp
parent1f1758f4dda0ddaf01c0b1d3a756f9db8ddc979d (diff)
downloadingen-138a87e915ad3aff184730415105f94c874174bf.tar.gz
ingen-138a87e915ad3aff184730415105f94c874174bf.tar.bz2
ingen-138a87e915ad3aff184730415105f94c874174bf.zip
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
Diffstat (limited to 'src/engine/LV2Info.cpp')
-rw-r--r--src/engine/LV2Info.cpp77
1 files changed, 0 insertions, 77 deletions
diff --git a/src/engine/LV2Info.cpp b/src/engine/LV2Info.cpp
deleted file mode 100644
index 4fd7885f..00000000
--- a/src/engine/LV2Info.cpp
+++ /dev/null
@@ -1,77 +0,0 @@
-/* This file is part of Ingen.
- * Copyright 2008-2011 David 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
- */
-
-#define __STDC_LIMIT_MACROS 1
-
-#include <stdint.h>
-
-#include <cassert>
-
-#include "lv2/lv2plug.in/ns/ext/atom/atom.h"
-#include "lv2/lv2plug.in/ns/ext/contexts/contexts.h"
-
-#include "shared/World.hpp"
-
-#include "LV2BlobFeature.hpp"
-#include "LV2EventFeature.hpp"
-#include "LV2Features.hpp"
-#include "LV2Info.hpp"
-#include "LV2RequestRunFeature.hpp"
-#include "LV2ResizeFeature.hpp"
-
-using namespace std;
-
-namespace Ingen {
-namespace Engine {
-
-LV2Info::LV2Info(Ingen::Shared::World* world)
- : input_class(slv2_value_new_uri(world->slv2_world(), SLV2_PORT_CLASS_INPUT))
- , output_class(slv2_value_new_uri(world->slv2_world(), SLV2_PORT_CLASS_OUTPUT))
- , control_class(slv2_value_new_uri(world->slv2_world(), SLV2_PORT_CLASS_CONTROL))
- , audio_class(slv2_value_new_uri(world->slv2_world(), SLV2_PORT_CLASS_AUDIO))
- , event_class(slv2_value_new_uri(world->slv2_world(), SLV2_PORT_CLASS_EVENT))
- , value_port_class(slv2_value_new_uri(world->slv2_world(),
- "http://lv2plug.in/ns/ext/atom#ValuePort"))
- , message_port_class(slv2_value_new_uri(world->slv2_world(),
- "http://lv2plug.in/ns/ext/atom#MessagePort"))
- , _world(world)
-{
- assert(world);
-
- world->lv2_features()->add_feature(LV2_EVENT_URI,
- SharedPtr<Shared::LV2Features::Feature>(new EventFeature()));
- world->lv2_features()->add_feature(LV2_BLOB_SUPPORT_URI,
- SharedPtr<Shared::LV2Features::Feature>(new BlobFeature()));
- world->lv2_features()->add_feature(LV2_RESIZE_PORT_URI,
- SharedPtr<Shared::LV2Features::Feature>(new ResizeFeature()));
- world->lv2_features()->add_feature(LV2_CONTEXTS_URI "#RequestRunFeature",
- SharedPtr<Shared::LV2Features::Feature>(new RequestRunFeature()));
-}
-
-LV2Info::~LV2Info()
-{
- slv2_value_free(input_class);
- slv2_value_free(output_class);
- slv2_value_free(control_class);
- slv2_value_free(audio_class);
- slv2_value_free(event_class);
- slv2_value_free(value_port_class);
- slv2_value_free(message_port_class);
-}
-
-} // namespace Engine
-} // namespace Ingen