lidar_sim.h 294 B

123456789101112131415161718
  1. #pragma once
  2. #include "../common/notifier.h"
  3. #ifdef LIDAR_SENSOR
  4. class CEgoClient;
  5. class CLidarSim
  6. {
  7. public:
  8. CLidarSim(CEgoClient* car);
  9. void Start();
  10. void Stop();
  11. void OnPeerMessage(int16_t cmd, int16_t length, const void* data);
  12. private:
  13. CEgoClient* _car;
  14. };
  15. #endif