summaryrefslogtreecommitdiff
path: root/pluginvst.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2016-07-14 17:00:10 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2016-07-14 17:00:10 +0200
commita9eadcc1b483d5d30a8443e78fa4d84c8f18d6c3 (patch)
treef5897ad46c0bc4cb8c4b3cfd1df3b07b66221774 /pluginvst.h
parent53b6cbafc8923cb6e305a7e868b502069ece5177 (diff)
Add 'get' prefix to metadata info methods. Fix test plugin.
Diffstat (limited to 'pluginvst.h')
-rw-r--r--pluginvst.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/pluginvst.h b/pluginvst.h
index e65a2ef..ca140d1 100644
--- a/pluginvst.h
+++ b/pluginvst.h
@@ -112,20 +112,20 @@ public:
//! Get unique plugin id.
std::string getId() override = 0;
- // Functions used to set plugin information for VST
-
+ // Functions used to set plugin information for VST
+
//! Returns value which is then used by getEffectName
- std::string effectName() override = 0;
+ std::string getEffectName() override = 0;
//! Returns value which is then used by getVendorString
- std::string vendorString() override = 0;
+ std::string getVendorString() override = 0;
//! Returns value which is then used by getProductString
- std::string productString() override = 0;
+ std::string getProductString() override = 0;
//! Returns value which is then used by getPlugCategory
- PluginCategory pluginCategory() override = 0;
+ PluginCategory getPluginCategory() override = 0;
//! Fill \e text with a string identifying the effect
bool getEffectName(char* name);
-
+
//! Fill \e text with a string identifying the vendor
bool getVendorString(char* text);