Paul Keith | af24a5d | 2020-01-27 20:19:23 -0600 | [diff] [blame^] | 1 | #include "ConsumerIr.h" |
| 2 | |
| 3 | namespace android { |
| 4 | namespace hardware { |
| 5 | namespace ir { |
| 6 | namespace V1_0 { |
| 7 | namespace implementation { |
| 8 | |
| 9 | // Methods from ::android::hardware::ir::V1_0::IConsumerIr follow. |
| 10 | Return<bool> ConsumerIr::transmit(int32_t carrierFreq, const hidl_vec<int32_t>& pattern) { |
| 11 | // TODO implement |
| 12 | return bool {}; |
| 13 | } |
| 14 | |
| 15 | Return<void> ConsumerIr::getCarrierFreqs(getCarrierFreqs_cb _hidl_cb) { |
| 16 | // TODO implement |
| 17 | return Void(); |
| 18 | } |
| 19 | |
| 20 | |
| 21 | // Methods from ::android::hidl::base::V1_0::IBase follow. |
| 22 | |
| 23 | //IConsumerIr* HIDL_FETCH_IConsumerIr(const char* /* name */) { |
| 24 | //return new ConsumerIr(); |
| 25 | //} |
| 26 | // |
| 27 | } // namespace implementation |
| 28 | } // namespace V1_0 |
| 29 | } // namespace ir |
| 30 | } // namespace hardware |
| 31 | } // namespace android |