comparison 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
comparison
equal deleted inserted replaced
126:2004ec2b653e 127:5b113c87b6e6
47 47
48 /** 48 /**
49 * \class ListRequest 49 * \class ListRequest
50 * 50 *
51 * ListRequest is a structure containing the information needed to 51 * ListRequest is a structure containing the information needed to
52 * list plugins. Currently empty. 52 * list plugins.
53 * 53 *
54 * \see ListResponse 54 * \see ListResponse
55 */ 55 */
56 struct ListRequest 56 struct ListRequest
57 { 57 {
58 ListRequest() { } // no constraints by default
59
60 std::vector<std::string> from;
58 }; 61 };
59 62
60 /** 63 /**
61 * \class ListResponse 64 * \class ListResponse
62 * 65 *