From a9eadcc1b483d5d30a8443e78fa4d84c8f18d6c3 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Thu, 14 Jul 2016 17:00:10 +0200 Subject: Add 'get' prefix to metadata info methods. Fix test plugin. --- pluginvst.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'pluginvst.h') 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); -- cgit v1.2.3