1 /*
2  * This file is auto-generated.  DO NOT MODIFY.
3  * Using: out/host/linux-x86/bin/aidl-cpp -dout/soong/.temp/sbox/a8f9401e4a6a0738b82469769f9c394354986721/out/android/net/wifi/nl80211/IPnoScanEvent.cpp.d --ninja -Isystem/connectivity/wificond/aidl -t --min_sdk_version=platform_apis -Isystem/connectivity/wificond/aidl/ system/connectivity/wificond/aidl/android/net/wifi/nl80211/IPnoScanEvent.aidl out/soong/.temp/sbox/a8f9401e4a6a0738b82469769f9c394354986721/out out/soong/.temp/sbox/a8f9401e4a6a0738b82469769f9c394354986721/out/android/net/wifi/nl80211/IPnoScanEvent.cpp
4  *
5  * DO NOT CHECK THIS FILE INTO A CODE TREE (e.g. git, etc..).
6  * ALWAYS GENERATE THIS FILE FROM UPDATED AIDL COMPILER
7  * AS A BUILD INTERMEDIATE ONLY. THIS IS NOT SOURCE CODE.
8  */
9 #pragma once
10 
11 #include <binder/IInterface.h>
12 #include <android/net/wifi/nl80211/IPnoScanEvent.h>
13 #include <android/net/wifi/nl80211/BnPnoScanEvent.h>
14 #include <binder/Delegate.h>
15 
16 
17 namespace android {
18 namespace net {
19 namespace wifi {
20 namespace nl80211 {
21 class LIBBINDER_EXPORTED BnPnoScanEvent : public ::android::BnInterface<IPnoScanEvent> {
22 public:
23   static constexpr uint32_t TRANSACTION_OnPnoNetworkFound = ::android::IBinder::FIRST_CALL_TRANSACTION + 0;
24   static constexpr uint32_t TRANSACTION_OnPnoScanFailed = ::android::IBinder::FIRST_CALL_TRANSACTION + 1;
25   explicit BnPnoScanEvent();
26   ::android::status_t onTransact(uint32_t _aidl_code, const ::android::Parcel& _aidl_data, ::android::Parcel* _aidl_reply, uint32_t _aidl_flags) override;
27 };  // class BnPnoScanEvent
28 
29 class LIBBINDER_EXPORTED IPnoScanEventDelegator : public BnPnoScanEvent {
30 public:
IPnoScanEventDelegator(const::android::sp<IPnoScanEvent> & impl)31   explicit IPnoScanEventDelegator(const ::android::sp<IPnoScanEvent> &impl) : _aidl_delegate(impl) {}
32 
getImpl()33   ::android::sp<IPnoScanEvent> getImpl() { return _aidl_delegate; }
OnPnoNetworkFound()34   ::android::binder::Status OnPnoNetworkFound() override {
35     return _aidl_delegate->OnPnoNetworkFound();
36   }
OnPnoScanFailed()37   ::android::binder::Status OnPnoScanFailed() override {
38     return _aidl_delegate->OnPnoScanFailed();
39   }
40 private:
41   ::android::sp<IPnoScanEvent> _aidl_delegate;
42 };  // class IPnoScanEventDelegator
43 }  // namespace nl80211
44 }  // namespace wifi
45 }  // namespace net
46 }  // namespace android
47