// Copyright (c) 2019 Computer Vision Center (CVC) at the Universitat Autonoma // de Barcelona (UAB). // // This work is licensed under the terms of the MIT license. // For a copy, see . #include "carla/sensor/s11n/GnssSerializer.h" #include "carla/sensor/data/GnssMeasurement.h" namespace carla { namespace sensor { namespace s11n { SharedPtr GnssSerializer::Deserialize(RawData &&data) { return SharedPtr(new data::GnssMeasurement(std::move(data))); } } // namespace s11n } // namespace sensor } // namespace carla