introduce the notion that note additions and property changes can cause the removal...
[ardour.git] / libs / ardour / ardour / vst_plugin.h
index 1cb7e376e4c825794577ce0a21160db55cf5db7e..cfc5a117a0fb71561cc00705565df9076f1ed5a1 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2004 Paul Davis 
+    Copyright (C) 2004 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -27,8 +27,7 @@
 #include <string>
 #include <dlfcn.h>
 
-#include <sigc++/signal.h>
-#include "pbd/stateful.h" 
+#include "pbd/stateful.h"
 #include <jack/types.h>
 #include "ardour/plugin.h"
 
@@ -50,7 +49,7 @@ class VSTPlugin : public ARDOUR::Plugin
        ~VSTPlugin ();
 
        /* Plugin interface */
-       
+
        std::string unique_id() const;
        const char * label() const;
        const char * name() const;
@@ -80,7 +79,7 @@ class VSTPlugin : public ARDOUR::Plugin
        bool parameter_is_input(uint32_t i) const { return true; }
        bool parameter_is_output(uint32_t i) const { return false; }
 
-       bool load_preset (const std::string preset_label );
+       bool load_preset (const std::string& preset_label);
        bool save_preset (std::string name);
 
        bool has_editor () const;
@@ -102,9 +101,9 @@ class VSTPlugin : public ARDOUR::Plugin
 class VSTPluginInfo : public PluginInfo
 {
   public:
-       VSTPluginInfo () {}
+       VSTPluginInfo ();
        ~VSTPluginInfo () {}
-       
+
        PluginPtr load (Session& session);
 };