SC Wrapper: To deal with incoming strings (whose size we don't know in advance), we have to change how we deal with unexpected numbers of incoming parameters. Now we just warn, and use defaults in the case of a short fall.
std::cout<<"ERROR: "<<getName()<<": parameter count mismatch. Perhaps your binary plugins and SC sources are different versions\n";
//TODO: work out how to bring any further work to a halt
}
if(inputs.remain()>0)std::cout<<"WARNING: "<<getName()<<" received "<<inputs.remain()<<" more parameters than expected. Perhaps your binary plugins and SC sources are different versions\n";