comparison vamp-sdk/Plugin.h @ 20:68b8b32a2070

* Add virtual destructors to PluginBase and Plugin to ensure subclass dtors get called * Fix buglet in host that caused plugin soname to be used as plugin name if no plugin name provided on command line * Add header dependencies to Makefile
author cannam
date Wed, 12 Apr 2006 12:32:18 +0000
parents a67eeb9d6341
children 44ec6c633113
comparison
equal deleted inserted replaced
19:08ee18123f5a 20:68b8b32a2070
112 */ 112 */
113 113
114 class Plugin : public PluginBase 114 class Plugin : public PluginBase
115 { 115 {
116 public: 116 public:
117 virtual ~Plugin() { }
118
117 /** 119 /**
118 * Initialise a plugin to prepare it for use with the given number 120 * Initialise a plugin to prepare it for use with the given number
119 * of input channels, step size (window increment, in sample 121 * of input channels, step size (window increment, in sample
120 * frames) and block size (window size, in sample frames). 122 * frames) and block size (window size, in sample frames).
121 * 123 *