#ifndef LCAMERA_DEV_CAMERA_IDENTITY_H #define LCAMERA_DEV_CAMERA_IDENTITY_H #include #include #include #include namespace lcamera_dev { struct CameraIdentityRecord { std::string id; std::string model; std::string locationLabel; }; CameraIdentityRecord buildIdentityRecord( const std::shared_ptr& camera); std::vector buildIdentityRecords( const std::vector>& cameras); std::string locationPropertyToLabel(int32_t locationValue); } // namespace lcamera_dev #endif // LCAMERA_DEV_CAMERA_IDENTITY_H