22 lines
374 B
C++
22 lines
374 B
C++
|
|
#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"
|