Mercurial > hg > piper-cpp
diff vamp-support/RequestResponse.h @ 127:5b113c87b6e6
Add and implement the "from" param for list request. The simple-server implementation is not yet correct.
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Wed, 02 Nov 2016 14:27:42 +0000 |
parents | 427c4c725085 |
children | 3eb00e5c76c4 |
line wrap: on
line diff
--- a/vamp-support/RequestResponse.h Fri Oct 28 14:31:58 2016 +0100 +++ b/vamp-support/RequestResponse.h Wed Nov 02 14:27:42 2016 +0000 @@ -49,12 +49,15 @@ * \class ListRequest * * ListRequest is a structure containing the information needed to - * list plugins. Currently empty. + * list plugins. * * \see ListResponse */ struct ListRequest { + ListRequest() { } // no constraints by default + + std::vector<std::string> from; }; /**