Changeset 50 in flair-dev for trunk/include/FlairMeta/SimuX4.h
- Timestamp:
- May 31, 2017, 3:54:26 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/FlairMeta/SimuX4.h
r44 r50 18 18 namespace flair { 19 19 namespace meta { 20 20 21 /*! \class SimuX4 21 22 * … … 23 24 */ 24 25 class SimuX4 : public Uav { 25 public: 26 // simu_id: 0 if simulating only one UAV 27 //>0 otherwise 28 SimuX4(std::string name, int simu_id = 0, 29 filter::UavMultiplex *multiplex = NULL); 30 ~SimuX4(); 31 void StartSensors(void); 26 public: 27 // simu_id: 0 if simulating only one UAV 28 //>0 otherwise 29 SimuX4(std::string name, uint32_t simu_id = 0,std::string options="", 30 filter::UavMultiplex *multiplex = NULL); 31 ~SimuX4(); 32 void StartSensors(void); 33 virtual std::string GetType(void) const{return "x4_simu";} 34 35 private: 36 void ReadCameraResolutionOption(std::string options,std::string cameraName,uint16_t &camWidth,uint16_t &camHeight) const; 37 32 38 }; 33 39 } // end namespace meta
Note:
See TracChangeset
for help on using the changeset viewer.