blob: e258b077c56e9188c964284a48e9f4cdeaafbf1b (
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* GetMetadata()
{
return new FTNoIR_ProtocolDll;
}
|