diff options
author | David Robillard <d@drobilla.net> | 2006-06-18 08:06:14 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-06-18 08:06:14 +0000 |
commit | 172a0119ee0a0bb6d50836c70936907c3eb71c9e (patch) | |
tree | cbcc56285b033bb9857b9be85f5f9be193b6f38f /src/libs/engine/LADSPAPlugin.h | |
parent | e6f42fd640dcbad6b2e39cc85bdf307d197278b0 (diff) | |
download | ingen-172a0119ee0a0bb6d50836c70936907c3eb71c9e.tar.gz ingen-172a0119ee0a0bb6d50836c70936907c3eb71c9e.tar.bz2 ingen-172a0119ee0a0bb6d50836c70936907c3eb71c9e.zip |
More work on new ports implementation;
lots of mass renaming and code removal.
git-svn-id: http://svn.drobilla.net/lad/grauph@52 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/LADSPAPlugin.h')
-rw-r--r-- | src/libs/engine/LADSPAPlugin.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/libs/engine/LADSPAPlugin.h b/src/libs/engine/LADSPAPlugin.h index dc1ba5e1..e91b6a36 100644 --- a/src/libs/engine/LADSPAPlugin.h +++ b/src/libs/engine/LADSPAPlugin.h @@ -25,8 +25,6 @@ namespace Om { -class PortInfo; - /** An instance of a LADSPA plugin. * @@ -47,20 +45,20 @@ public: void set_port_buffer(size_t voice, size_t port_num, void* buf); - const Plugin* plugin() const { return m_plugin; } - void plugin(const Plugin* const pi) { m_plugin = pi; } + const Plugin* plugin() const { return _plugin; } + void plugin(const Plugin* const pi) { _plugin = pi; } protected: // Prevent copies (undefined) LADSPAPlugin(const LADSPAPlugin& copy); LADSPAPlugin& operator=(const LADSPAPlugin&); - void get_port_vals(ulong port_index, PortInfo* info); + //void get_port_vals(ulong port_index, PortInfo* info); - const LADSPA_Descriptor* m_descriptor; - LADSPA_Handle* m_instances; + const LADSPA_Descriptor* _descriptor; + LADSPA_Handle* _instances; - const Plugin* m_plugin; + const Plugin* _plugin; }; |