Remove no-longer used file.
[ardour.git] / libs / ardour / ardour / vst_plugin.h
index d4ca3b8b601625990b2ac97c605fe71c47684ad5..a06c3667f5d9d403986f9d8dadd3484a4acffcb0 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
 #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"
 
-using std::string;
-using std::vector;
-using std::list;
-using std::map;
-
 struct _FSTHandle;
 struct _FST;
 typedef struct _FSTHandle FSTHandle;
@@ -55,7 +49,7 @@ class VSTPlugin : public ARDOUR::Plugin
        ~VSTPlugin ();
 
        /* Plugin interface */
-       
+
        std::string unique_id() const;
        const char * label() const;
        const char * name() const;
@@ -70,14 +64,14 @@ class VSTPlugin : public ARDOUR::Plugin
        uint32_t nth_parameter (uint32_t port, bool& ok) const;
        void activate ();
        void deactivate ();
-       void set_block_size (nframes_t nframes);
+        int set_block_size (nframes_t nframes);
 
        int connect_and_run (BufferSet&,
                        ChanMapping in, ChanMapping out,
                        nframes_t nframes, nframes_t offset);
 
-       string describe_parameter (Evoral::Parameter);
-       string state_node_name() const { return "vst"; }
+       std::string describe_parameter (Evoral::Parameter);
+       std::string state_node_name() const { return "vst"; }
        void print_parameter (uint32_t, char*, uint32_t len) const;
 
        bool parameter_is_audio(uint32_t i) const { return false; }
@@ -85,13 +79,13 @@ 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 string preset_label );
-       bool save_preset(string name);
+       bool load_preset (const std::string& preset_label);
+       bool save_preset (std::string name);
 
        bool has_editor () const;
 
        XMLNode& get_state();
-       int set_state(const XMLNode& node);
+       int set_state (XMLNode const &, int);
 
        AEffect* plugin() const { return _plugin; }
        FST* fst() const { return _fst; }
@@ -107,9 +101,9 @@ class VSTPlugin : public ARDOUR::Plugin
 class VSTPluginInfo : public PluginInfo
 {
   public:
-       VSTPluginInfo () {}
+       VSTPluginInfo ();
        ~VSTPluginInfo () {}
-       
+
        PluginPtr load (Session& session);
 };