blob: 01f7ff5fe6af9e3eadcf3044332828258eece19e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "ftnoir_protocol_libevdev.h"
#include <QDebug>
#include "facetracknoir/plugin-support.h"
FTNoIR_ProtocolDll::FTNoIR_ProtocolDll() {
}
FTNoIR_ProtocolDll::~FTNoIR_ProtocolDll()
{
}
extern "C" OPENTRACK_EXPORT Metadata* CALLING_CONVENTION GetMetadata()
{
return new FTNoIR_ProtocolDll;
}
|