mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-08 03:29:17 +00:00
Test: hidl_test Test: `make hidl_test_java` compiles Change-Id: Ie9217b79e369f2a1e7a7c9ed02524b17e3fc8b7f
45 lines
1.3 KiB
C++
45 lines
1.3 KiB
C++
#ifndef HIDL_GENERATED_android_hardware_tests_inheritance_V1_0_Child_H_
|
|
#define HIDL_GENERATED_android_hardware_tests_inheritance_V1_0_Child_H_
|
|
|
|
#include <android/hardware/tests/inheritance/1.0/IChild.h>
|
|
#include <hidl/Status.h>
|
|
|
|
#include <hidl/MQDescriptor.h>
|
|
namespace android {
|
|
namespace hardware {
|
|
namespace tests {
|
|
namespace inheritance {
|
|
namespace V1_0 {
|
|
namespace implementation {
|
|
|
|
using ::android::hardware::tests::inheritance::V1_0::IParent;
|
|
using ::android::hardware::tests::inheritance::V1_0::IChild;
|
|
using ::android::hardware::Return;
|
|
using ::android::hardware::Void;
|
|
using ::android::hardware::hidl_vec;
|
|
using ::android::hardware::hidl_string;
|
|
using ::android::sp;
|
|
|
|
struct Child : public IChild {
|
|
// Methods from ::android::hardware::tests::inheritance::V1_0::IGrandparent follow.
|
|
Return<void> doGrandparent() override;
|
|
|
|
// Methods from ::android::hardware::tests::inheritance::V1_0::IParent follow.
|
|
Return<void> doParent() override;
|
|
|
|
// Methods from ::android::hardware::tests::inheritance::V1_0::IChild follow.
|
|
Return<void> doChild() override;
|
|
|
|
};
|
|
|
|
extern "C" IChild* HIDL_FETCH_IChild(const char* name);
|
|
|
|
} // namespace implementation
|
|
} // namespace V1_0
|
|
} // namespace inheritance
|
|
} // namespace tests
|
|
} // namespace hardware
|
|
} // namespace android
|
|
|
|
#endif // HIDL_GENERATED_android_hardware_tests_inheritance_V1_0_Child_H_
|