Files
salmanoff/commonLibs/livoxProto1/livoxProto1.cpp
T

22 lines
374 B
C++
Raw Normal View History

#include <user/senseApiDesc.h>
#include "livoxProto1.h"
#include "livoxProto1Core.h"
extern "C" {
livoxProto1_mainFn livoxProto1_main;
livoxProto1_exitFn livoxProto1_exit;
void livoxProto1_main(
const std::shared_ptr<smo::ComponentThread> &componentThread)
{
livoxProto1::main(componentThread);
}
void livoxProto1_exit(void)
{
livoxProto1::exit();
}
} // extern "C"