summaryrefslogtreecommitdiff
path: root/tests/inheritance/1.0/default/Child.h
blob: 268dfeba84d5104307df753d6fbb71deb998c506 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#ifndef ANDROID_HARDWARE_TESTS_INHERITANCE_V1_0_CHILD_H
#define 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  // ANDROID_HARDWARE_TESTS_INHERITANCE_V1_0_CHILD_H