blob: c53dc872010de192e242192f53b1e277efc608c5 [file] [log] [blame]
Yifan Hongcc6ad7d2016-10-18 18:44:17 -07001#define LOG_TAG "hidl_test"
2#include <android-base/logging.h>
3
4#include "Grandparent.h"
5
6namespace android {
7namespace hardware {
8namespace tests {
9namespace inheritance {
10namespace V1_0 {
11namespace implementation {
12
13// Methods from ::android::hardware::tests::inheritance::V1_0::IGrandparent follow.
14Return<void> Grandparent::doGrandparent() {
15 ALOGI("SERVER(Bar) Grandparent::doGrandparent");
16 return Void();
17}
18
19
20IGrandparent* HIDL_FETCH_IGrandparent(const char* /* name */) {
21 return new Grandparent();
22}
23
24} // namespace implementation
25} // namespace V1_0
26} // namespace inheritance
27} // namespace tests
28} // namespace hardware
29} // namespace android