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. --- pluginlv2.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'pluginlv2.h') diff --git a/pluginlv2.h b/pluginlv2.h index 2c91dcc..da10ac3 100644 --- a/pluginlv2.h +++ b/pluginlv2.h @@ -112,11 +112,11 @@ public: //! Get unique plugin id. std::string getId() override = 0; - // Functions used to set plugin information for VST - std::string effectName() override = 0; - std::string vendorString() override = 0; - std::string productString() override = 0; - PluginCategory pluginCategory() override = 0; + // Functions used to set plugin information. + std::string getEffectName() override = 0; + std::string getVendorString() override = 0; + std::string getProductString() override = 0; + PluginCategory getPluginCategory() override = 0; virtual void process(std::size_t pos, const std::vector& input_events, -- cgit v1.2.3