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 VehicleHalServer to DefaultVehicleHalServer. 18 // The virtualized VHAL that uses VehichleHalServer 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 "DefaultVehicleHalServer.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 VehicleHalServer : public DefaultVehicleHalServer { 35 public: VehicleHalServer()36 VehicleHalServer() : DefaultVehicleHalServer(){}; 37 }; 38 39 } // namespace impl 40 41 } // namespace V2_0 42 } // namespace vehicle 43 } // namespace automotive 44 } // namespace hardware 45 } // namespace android 46