diff options
| author | Tim Redfern <tim@herge.(none)> | 2013-02-18 17:12:27 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@herge.(none)> | 2013-02-18 17:12:27 +0000 |
| commit | b5ac1eb4bc06e6ae3cd2a908270640bc5181257b (patch) | |
| tree | 7e5a0501e08aaa6efc386227a4873033a2c997f2 /rotord/vampHost.h | |
| parent | 42a67a912a283f9012828660f07bc5743527317a (diff) | |
plugins loading and failing
Diffstat (limited to 'rotord/vampHost.h')
| -rwxr-xr-x | rotord/vampHost.h | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/rotord/vampHost.h b/rotord/vampHost.h index 6bc6b75..03a375e 100755 --- a/rotord/vampHost.h +++ b/rotord/vampHost.h @@ -28,16 +28,19 @@ using Vamp::HostExt::PluginInputDomainAdapter; namespace vampHost { class Settings{ - Settings(string _so="",string _filter="",string _id="",string _input=""); - string soname; - string filtername; - string id; - string inputFile; - string output; + public: + Settings(string _so="",string _filter="",string _input="") { + soname=_so; + filtername=_filter; + inputFile=_input; + } + string soname; + string filtername; + string inputFile; }; - void printFeatures(int, int, int, Plugin::FeatureSet, ofstream *, bool frames); - int runPlugin(string myname, string soname, string id, string output,int outputNo, string inputFile, string outfilename, bool frames); + void printFeatures(int, int, int, Plugin::FeatureSet, ostream &, bool frames); + int runPlugin(string myname, string soname, string id, string output,int outputNo, string inputFile, ostream& out, bool frames); }
\ No newline at end of file |
