aboutsummaryrefslogtreecommitdiffstats
path: root/lvz/AEffEditor.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'lvz/AEffEditor.hpp')
-rw-r--r--lvz/AEffEditor.hpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/lvz/AEffEditor.hpp b/lvz/AEffEditor.hpp
deleted file mode 100644
index d118a9a..0000000
--- a/lvz/AEffEditor.hpp
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef __LVZ_AUDIOEFFECT_HPP
-#define __LVZ_AUDIOEFFECT_HPP
-
-class AudioEffect;
-
-class AEffEditor {
-public:
- AEffEditor (AudioEffect* eff)
- : effect(eff)
- , URI("NULL")
- , pluginURI("NULL")
- {}
-
- virtual long open(void* ptr) { return true; }
- virtual void close() {}
-
- virtual void idle() {}
- virtual void postUpdate() {}
-
- virtual const char* getURI() { return URI; }
- virtual void setURI(const char* u) { URI = u; }
-
- virtual const char* getPluginURI() { return pluginURI; }
- virtual void setPluginURI(const char* u) { pluginURI = u; }
-
-protected:
- AudioEffect* effect;
- const char* URI;
- const char* pluginURI;
-};
-
-#endif // __LVZ_AUDIOEFFECT_HPP