annotate vamp-client/Loader.h @ 108:247d8d533a9c

Cut down vastly on the number of config.pri files and places where their contents has to be effectively duplicated without them
author Chris Cannam <c.cannam@qmul.ac.uk>
date Mon, 24 Oct 2016 17:53:33 +0100
parents 427c4c725085
children ff3fd8d1b2dc
rev   line source
c@94 1
c@94 2 #ifndef PIPER_LOADER_H
c@94 3 #define PIPER_LOADER_H
c@94 4
c@97 5 #include "vamp-support/RequestResponse.h"
c@94 6
c@97 7 namespace piper_vamp {
c@97 8 namespace client {
c@94 9
c@94 10 class Loader
c@94 11 {
c@94 12 public:
c@97 13 virtual ListResponse listPluginData() = 0;
c@97 14 virtual LoadResponse loadPlugin(const LoadRequest &) = 0;
c@94 15 };
c@94 16
c@94 17 }
c@94 18 }
c@94 19
c@94 20 #endif