1 /* 2 * Copyright (C) 2021 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 // This file is just used for soft migration from EmulatedVehicleHal to DefaultVehicleHal. 18 // The virtualized VHAL that uses EmulatedVehicleHal is at a different repo and cannot be updated 19 // together with this repo, so we need a soft migration. Once the rename is finished at the 20 // virtualized VHAL side, this file would be removed. 21 22 #pragma once 23 24 #include "DefaultVehicleHal.h" 25 26 namespace android { 27 namespace hardware { 28 namespace automotive { 29 namespace vehicle { 30 namespace V2_0 { 31 32 namespace impl { 33 34 class EmulatedVehicleHal : public DefaultVehicleHal { 35 public: EmulatedVehicleHal(VehiclePropertyStore * propStore,VehicleHalClient * client)36 EmulatedVehicleHal(VehiclePropertyStore* propStore, VehicleHalClient* client) 37 : DefaultVehicleHal(propStore, client){}; 38 }; 39 40 } // namespace impl 41 42 } // namespace V2_0 43 } // namespace vehicle 44 } // namespace automotive 45 } // namespace hardware 46 } // namespace android 47