/* mbed Microcontroller Library * Copyright (c) 2019 ARM Limited * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef BLE_IMPLEMENTATION_FORWARD_H_ #define BLE_IMPLEMENTATION_FORWARD_H_ //////////////////////////////////////////////////////////////////////////////// // Forward declarations of the implementation types // namespace ble { namespace interface { template class LegacyGap; template class Gap; template class GattClient; template class SecurityManager; template class GattServer; } // namespace interface } // ble class MaximGap; class MaximGattClient; class MaximGattServer; class MaximSecurityManager; // implementation assembly namespace ble { namespace impl { // SECURITY MANAGER typedef interface::SecurityManager SecurityManager; // GAP typedef interface::LegacyGap LegacyGap; typedef interface::Gap Gap; // GATT CLIENT typedef interface::GattClient GattClient; // GATT SERVER typedef ble::interface::GattServer GattServer; } // impl } // ble #endif //BLE_IMPLEMENTATION_FORWARD_H_