summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/PluginImpl.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-10-07 19:59:13 +0000
committerDavid Robillard <d@drobilla.net>2007-10-07 19:59:13 +0000
commitb1406a0e09b0cb27032ade94c58d9a471086b89a (patch)
tree783b407f0f9ce4504369849ea128375a447dec57 /src/libs/engine/PluginImpl.hpp
parent23683a3e4f03dd8f7cdb1dc1a1592fdaa9d18b23 (diff)
downloadingen-b1406a0e09b0cb27032ade94c58d9a471086b89a.tar.gz
ingen-b1406a0e09b0cb27032ade94c58d9a471086b89a.tar.bz2
ingen-b1406a0e09b0cb27032ade94c58d9a471086b89a.zip
Remove DSSI.
git-svn-id: http://svn.drobilla.net/lad/ingen@838 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/PluginImpl.hpp')
-rw-r--r--src/libs/engine/PluginImpl.hpp12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/libs/engine/PluginImpl.hpp b/src/libs/engine/PluginImpl.hpp
index e2aa4374..13f17ca6 100644
--- a/src/libs/engine/PluginImpl.hpp
+++ b/src/libs/engine/PluginImpl.hpp
@@ -95,7 +95,6 @@ public:
const char* type_string() const {
if (_type == LADSPA) return "LADSPA";
else if (_type == LV2) return "LV2";
- else if (_type == DSSI) return "DSSI";
else if (_type == Internal) return "Internal";
else if (_type == Patch) return "Patch";
else return "";
@@ -108,7 +107,6 @@ public:
void set_type(const string& type_string) {
if (type_string == "LADSPA") _type = LADSPA;
else if (type_string == "LV2") _type = LV2;
- else if (type_string == "DSSI") _type = DSSI;
else if (type_string == "Internal") _type = Internal;
else if (type_string == "Patch") _type = Patch;
}
@@ -124,11 +122,11 @@ public:
private:
Plugin::Type _type;
string _uri; ///< LV2 only
- string _lib_path; ///< LADSPA/DSSI only
- string _lib_name; ///< LADSPA/DSSI only
- string _plug_label; ///< LADSPA/DSSI only
- string _name; ///< LADSPA/DSSI only
- unsigned long _id; ///< LADSPA/DSSI only
+ string _lib_path; ///< LADSPA only
+ string _lib_name; ///< LADSPA only
+ string _plug_label; ///< LADSPA only
+ string _name; ///< LADSPA only
+ unsigned long _id; ///< LADSPA only
Glib::Module* _module;