26 lines
560 B
C++
26 lines
560 B
C++
|
|
#ifndef LIVOX_PROTO1_API_H
|
||
|
|
#define LIVOX_PROTO1_API_H
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
#include <vector>
|
||
|
|
#include <memory>
|
||
|
|
#include <map>
|
||
|
|
#include "livoxProto1Core.h"
|
||
|
|
#include "livoxProto1Device.h"
|
||
|
|
|
||
|
|
namespace livoxProto1 {
|
||
|
|
|
||
|
|
} // namespace livoxProto1
|
||
|
|
|
||
|
|
extern "C" {
|
||
|
|
typedef void (livoxProto1_mainFn)(
|
||
|
|
const std::shared_ptr<smo::ComponentThread> &componentThread);
|
||
|
|
typedef void (livoxProto1_exitFn)(void);
|
||
|
|
|
||
|
|
void livoxProto1_main(
|
||
|
|
const std::shared_ptr<smo::ComponentThread> &componentThread);
|
||
|
|
void livoxProto1_exit(void);
|
||
|
|
} // extern "C"
|
||
|
|
|
||
|
|
#endif // LIVOX_PROTO1_API_H
|