#ifndef _GEBOT_IMU_H_ #define _GEBOT_IMU_H_ class IMU { public: virtual bool Init() = 0; virtual void GetData(float* imu_data) = 0; }; #endif