2023-11-13 13:19:43 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2023 The LineageOS Project
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
2023-09-27 16:01:25 +02:00
|
|
|
#include <hidl/Static.h>
|
|
|
|
|
|
|
|
namespace android {
|
|
|
|
namespace hardware {
|
|
|
|
namespace details {
|
|
|
|
|
|
|
|
// Deprecated; kept for ABI compatibility. Use getBnConstructorMap.
|
|
|
|
DoNotDestruct<BnConstructorMap> gBnConstructorMap{};
|
|
|
|
|
|
|
|
// Deprecated; kept for ABI compatibility. Use getBsConstructorMap.
|
|
|
|
DoNotDestruct<BsConstructorMap> gBsConstructorMap{};
|
|
|
|
|
2023-11-12 16:13:29 +01:00
|
|
|
} // namespace details
|
|
|
|
} // namespace hardware
|
|
|
|
} // namespace android
|