b65f8073ba
git-svn-id: svn://localhost/ardour2/branches/3.0@5403 d708f5d6-7413-0410-9779-e7cbd77b26cf
58 lines
1.0 KiB
C++
58 lines
1.0 KiB
C++
/*
|
|
Ardour9pin interface file
|
|
Ben Loftis
|
|
Created: 05/18/06 11:07:56
|
|
Copyright Harrison Audio, LLC, 2007
|
|
*/
|
|
|
|
#include "powermate.h"
|
|
|
|
using namespace ARDOUR;
|
|
|
|
ControlProtocol*
|
|
new_powermate_protocol (ControlProtocolDescriptor* /*descriptor*/, Session* s)
|
|
{
|
|
PowermateControlProtocol* pcp = new PowermateControlProtocol (*s);
|
|
|
|
if (pcp->set_active (true)) {
|
|
delete pcp;
|
|
return 0;
|
|
}
|
|
|
|
return pcp;
|
|
|
|
}
|
|
|
|
void
|
|
delete_powermate_protocol (ControlProtocolDescriptor* /*descriptor*/, ControlProtocol* cp)
|
|
{
|
|
delete cp;
|
|
}
|
|
|
|
bool
|
|
probe_powermate_protocol (ControlProtocolDescriptor* /*descriptor*/)
|
|
{
|
|
return PowermateControlProtocol::probe ();
|
|
}
|
|
|
|
static ControlProtocolDescriptor powermate_descriptor = {
|
|
name : "powermate",
|
|
id : "uri://ardour.org/ardour/powermate:0",
|
|
ptr : 0,
|
|
module : 0,
|
|
mandatory : 0,
|
|
supports_feedback : false,
|
|
probe : probe_powermate_protocol,
|
|
initialize : new_powermate_protocol,
|
|
destroy : delete_powermate_protocol
|
|
};
|
|
|
|
|
|
extern "C" {
|
|
ControlProtocolDescriptor*
|
|
protocol_descriptor () {
|
|
return &powermate_descriptor;
|
|
}
|
|
}
|
|
|