• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 //  Copyright (C) 2017 Google, Inc.
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 #pragma once
18 
19 #include <binder/Parcel.h>
20 #include <binder/Parcelable.h>
21 
22 #include "bluetooth/avrcp_register_notification_response.h"
23 
24 using android::Parcel;
25 using android::Parcelable;
26 using android::status_t;
27 
28 namespace android {
29 namespace bluetooth {
30 
31 class BluetoothAvrcpRegisterNotificationResponse
32     : public Parcelable,
33       public ::bluetooth::AvrcpRegisterNotificationResponse {
34  public:
35   BluetoothAvrcpRegisterNotificationResponse() = default;
BluetoothAvrcpRegisterNotificationResponse(const AvrcpRegisterNotificationResponse & other)36   BluetoothAvrcpRegisterNotificationResponse(
37       const AvrcpRegisterNotificationResponse& other)
38       : ::bluetooth::AvrcpRegisterNotificationResponse(other) {}
BluetoothAvrcpRegisterNotificationResponse(const BluetoothAvrcpRegisterNotificationResponse & other)39   BluetoothAvrcpRegisterNotificationResponse(
40       const BluetoothAvrcpRegisterNotificationResponse& other)
41       : ::bluetooth::AvrcpRegisterNotificationResponse(other) {}
42   ~BluetoothAvrcpRegisterNotificationResponse() = default;
43 
44   // Write |this| parcelable to the given |parcel|.  Keep in mind that
45   // implementations of writeToParcel must be manually kept in sync
46   // with readFromParcel and the Java equivalent versions of these methods.
47   //
48   // Returns android::OK on success and an appropriate error otherwise.
49   status_t writeToParcel(Parcel* parcel) const override;
50 
51   // Read data from the given |parcel| into |this|.  After readFromParcel
52   // completes, |this| should have equivalent state to the object that
53   // wrote itself to the parcel.
54   //
55   // Returns android::OK on success and an appropriate error otherwise.
56   status_t readFromParcel(const Parcel* parcel) override;
57 };
58 
59 }  // namespace bluetooth
60 }  // namespace android
61