1 #include "Hash.h" 2 3 namespace android { 4 namespace hardware { 5 namespace tests { 6 namespace hash { 7 namespace V1_0 { 8 namespace implementation { 9 10 // Methods from ::android::hardware::tests::hash::V1_0::IHash follow. dummy()11Return<void> Hash::dummy() { 12 return Void(); 13 } 14 functions()15Return<void> Hash::functions() { 16 return Void(); 17 } 18 19 // Methods from ::android::hidl::base::V1_0::IBase follow. 20 HIDL_FETCH_IHash(const char *)21IHash* HIDL_FETCH_IHash(const char* /* name */) { 22 return new Hash(); 23 } 24 25 } // namespace implementation 26 } // namespace V1_0 27 } // namespace hash 28 } // namespace tests 29 } // namespace hardware 30 } // namespace android 31