tof3d_manager.h 377 B

12345678910111213141516171819
  1. #pragma once
  2. #include "protobuf/load_protobuf.hpp"
  3. #include "tof3d_config.pb.h"
  4. #include "vzense/device_tof3d.h"
  5. #include "error_code/error_code.hpp"
  6. #include "communication/rabbitmq_communication.h"
  7. class tof3dManager {
  8. public:
  9. tof3dManager() = default;
  10. ~tof3dManager() = default;
  11. Error_manager init();
  12. protected:
  13. private:
  14. tof3dManagerParams m_tof_etc;
  15. };