Yifan Hong | 80471b0 | 2017-03-29 15:46:12 -0700 | [diff] [blame] | 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. |
| 11 | Return<void> Hash::dummy() { |
| 12 | return Void(); |
| 13 | } |
| 14 | |
| 15 | Return<void> Hash::functions() { |
| 16 | return Void(); |
| 17 | } |
| 18 | |
| 19 | // Methods from ::android::hidl::base::V1_0::IBase follow. |
| 20 | |
| 21 | IHash* 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 |