1 /*
2  * Copyright (c) 2021-2022 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #ifndef OHOS_HDI_BLUETOOTH_HCI_V1_0_IHCICALLBACKIMPL_H
17 #define OHOS_HDI_BLUETOOTH_HCI_V1_0_IHCICALLBACKIMPL_H
18 
19 #include <hdf_base.h>
20 #include "v1_0/ibluetooth_audio_callback.h"
21 using OHOS::HDI::Bluetooth::A2dp::V1_0::IBluetoothAudioCallback;
22 namespace OHOS {
23 namespace HDI {
24 namespace Bluetooth {
25 namespace A2dp {
26 namespace V1_0 {
27 class SeClientCallback : public IBluetoothAudioCallback {
28 public:
SeClientCallback()29     SeClientCallback()
30     {}
~SeClientCallback()31     virtual ~SeClientCallback()
32     {}
33 
34     int32_t StartRender() override;
35 
36     int32_t SuspendRender() override;
37 
38     int32_t StopRender() override;
39 };
40 } // V1_0
41 } // A2dp
42 } // Bluetooth
43 } // HDI
44 } // OHOS
45 
46 #endif // OHOS_HDI_BLUETOOTH_HCI_V1_0_IHCICALLBACKIMPL_H
47