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