1 /*
2  * This file is auto-generated.  DO NOT MODIFY.
3  * Using: out/host/linux-x86/bin/aidl --lang=ndk -Weverything -Wno-missing-permission-annotation -t --min_sdk_version 31 --ninja -d out/soong/.intermediates/art/artd/binder/artd-aidl-ndk-source/gen/staging/com/android/server/art/IArtdNotification.cpp.d -h out/soong/.intermediates/art/artd/binder/artd-aidl-ndk-source/gen/include/staging -o out/soong/.intermediates/art/artd/binder/artd-aidl-ndk-source/gen/staging -Nart/artd/binder art/artd/binder/com/android/server/art/IArtdNotification.aidl
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 "aidl/com/android/server/art/IArtdNotification.h"
12 
13 #include <android/binder_ibinder.h>
14 #include <cassert>
15 
16 #ifndef __BIONIC__
17 #ifndef __assert2
18 #define __assert2(a,b,c,d) ((void)0)
19 #endif
20 #endif
21 
22 namespace aidl {
23 namespace com {
24 namespace android {
25 namespace server {
26 namespace art {
27 class BnArtdNotification : public ::ndk::BnCInterface<IArtdNotification> {
28 public:
29   BnArtdNotification();
30   virtual ~BnArtdNotification();
31 protected:
32   ::ndk::SpAIBinder createBinder() override;
33 private:
34 };
35 class IArtdNotificationDelegator : public BnArtdNotification {
36 public:
IArtdNotificationDelegator(const std::shared_ptr<IArtdNotification> & impl)37   explicit IArtdNotificationDelegator(const std::shared_ptr<IArtdNotification> &impl) : _impl(impl) {
38   }
39 
wait(int32_t in_timeoutMs,bool * _aidl_return)40   ::ndk::ScopedAStatus wait(int32_t in_timeoutMs, bool* _aidl_return) override {
41     return _impl->wait(in_timeoutMs, _aidl_return);
42   }
43 protected:
44 private:
45   std::shared_ptr<IArtdNotification> _impl;
46 };
47 
48 }  // namespace art
49 }  // namespace server
50 }  // namespace android
51 }  // namespace com
52 }  // namespace aidl
53