view vamp-client/Loader.h @ 106:a0edd7c97d2d

Add generated files -- they aren't supposed to change (much?) I think and it's better than expecting the compiler to be present on every platform
author Chris Cannam <c.cannam@qmul.ac.uk>
date Mon, 17 Oct 2016 18:56:18 +0100
parents 427c4c725085
children ff3fd8d1b2dc
line wrap: on
line source

#ifndef PIPER_LOADER_H
#define PIPER_LOADER_H

#include "vamp-support/RequestResponse.h"

namespace piper_vamp {
namespace client {

class Loader
{
public:
    virtual ListResponse listPluginData() = 0;
    virtual LoadResponse loadPlugin(const LoadRequest &) = 0;
};

}
}

#endif